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:
@ -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
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -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;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user