Update server_handleSafeGear.sqf

This commit is contained in:
oiad
2017-08-19 11:53:11 +12:00
committed by GitHub
parent ecf013839e
commit 367d74f3f4

View File

@@ -124,7 +124,7 @@ _fnc_lockCode = {
if (_code < 10000) exitWith {0};
_color = "";
_code = _code - 10000;
if (_code <= 99) then {_color = localize "STR_TEAM_RED";};
if (_code >= 100 && _code <= 199) then {_color = localize "STR_TEAM_GREEN"; _code = _code - 100;};
if (_code >= 200) then {_color = localize "STR_TEAM_BLUE"; _code = _code - 200;};