Skip to content

Commit

Permalink
Update addons/trenches/functions/fnc_canPlaceCamouflage.sqf
Browse files Browse the repository at this point in the history
Co-Authored-By: AdlerSalbei <[email protected]>
  • Loading branch information
jonpas and AdlerSalbei authored Dec 10, 2018
1 parent 5047df8 commit ab5b1cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/trenches/functions/fnc_canPlaceCamouflage.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ params ["_trench", "_unit"];
private _statusNumber = _trench getVariable [QGVAR(trenchCamouflageStatus), 0];
private _statusString = "";

if (_statusNumber <10) then {
if (_statusNumber < 10) then {
_statusString = ("CamouflagePositions0" + str(_statusNumber +1));
} else {
_statusString = ("CamouflagePositions" + str(_statusNumber +1));
Expand Down

0 comments on commit ab5b1cf

Please sign in to comment.