summaryrefslogtreecommitdiffstats
path: root/Client/Functions/Client_DebugHint.sqf
blob: 5c6af51b457de727e982c6a69ccce61eb5006013 (plain)
1
2
3
4
5
6
7
8
Private ["_string"];

_string = _this;
if (isMultiplayer) then {
	hint _string;
} else {
	hintC _string;
};