mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
General - Cleanup spaces in macros (#9769)
Co-authored-by: LinkIsGrim <salluci.lovi@gmail.com>
This commit is contained in:
parent
6c60b67494
commit
a3aef6a066
@ -18,7 +18,7 @@
|
||||
params ["_name"];
|
||||
|
||||
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
|
||||
};
|
||||
|
||||
|
@ -20,7 +20,7 @@
|
||||
params ["_name", "_args", ["_ttl", 0]];
|
||||
|
||||
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
|
||||
};
|
||||
|
||||
|
@ -31,5 +31,4 @@ if (_typeOfDamage in GVAR(damageTypeDetails)) then {
|
||||
TRACE_1("Return invalid, terminating wound handling",_damageData);
|
||||
};
|
||||
} forEach _woundHandlers;
|
||||
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user