General - Cleanup spaces in macros (#9769)

Co-authored-by: LinkIsGrim <salluci.lovi@gmail.com>
This commit is contained in:
PabstMirror
2024-02-05 11:04:24 -06:00
committed by GitHub
parent 6c60b67494
commit a3aef6a066
145 changed files with 234 additions and 235 deletions

View File

@ -18,7 +18,7 @@
params ["_name"]; params ["_name"];
if !(_name in GVAR(syncedEvents)) exitWith { if !(_name in GVAR(syncedEvents)) exitWith {
ERROR_1("Synced event key [%1] not found (removeSyncedEventHandler).", _name); ERROR_1("Synced event key [%1] not found (removeSyncedEventHandler)",_name);
false false
}; };

View File

@ -20,7 +20,7 @@
params ["_name", "_args", ["_ttl", 0]]; params ["_name", "_args", ["_ttl", 0]];
if !(_name in GVAR(syncedEvents)) exitWith { if !(_name in GVAR(syncedEvents)) exitWith {
ERROR_1("Synced event key [%1] not found (syncedEvent).", _name); ERROR_1("Synced event key [%1] not found (syncedEvent)",_name);
false false
}; };

View File

@ -31,5 +31,4 @@ if (_typeOfDamage in GVAR(damageTypeDetails)) then {
TRACE_1("Return invalid, terminating wound handling",_damageData); TRACE_1("Return invalid, terminating wound handling",_damageData);
}; };
} forEach _woundHandlers; } forEach _woundHandlers;
}; };