mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
fd7a5004f0
* Add option to disable AI kills tracking in Kill Tracker Add an option to disable tracking of kills of AI units when using ACE Kill Tracker. Configurable through Addon Settings * Made setting global * Requested changes * Omitted optional default params Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> * Added missing dot Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Added missing dot in Czech translation * Update addons/killtracker/XEH_preInit.sqf * Update addons/killtracker/XEH_preInit.sqf --------- Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
12 lines
249 B
C++
12 lines
249 B
C++
class Extended_PreInit_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE(call COMPILE_SCRIPT(XEH_preInit));
|
|
};
|
|
};
|
|
|
|
class Extended_PostInit_EventHandlers {
|
|
class ADDON {
|
|
init = QUOTE(call COMPILE_SCRIPT(XEH_postInit));
|
|
};
|
|
};
|