fix indentation

atom needed the editorconfig package
This commit is contained in:
bux578 2015-08-15 18:58:31 +02:00
parent 675cfc2da7
commit 3d9b0d527c

View File

@ -194,9 +194,9 @@ if (currentWeapon _unit != "") then {
private ["_index"];
_index = 0;
while {
_index < 100 && {currentWeaponMode _unit != _activeWeaponMode}
_index < 100 && {currentWeaponMode _unit != _activeWeaponMode}
} do {
_unit action ["SwitchWeapon", _unit, _unit, _index];
_index = _index + 1;
_unit action ["SwitchWeapon", _unit, _unit, _index];
_index = _index + 1;
};
};