mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
Also fixed HandleDamage EH was added twice. We moved it to the configs
and forgot to take it out of the FSM in 6853263.
10 lines
383 B
Plaintext
10 lines
383 B
Plaintext
// Moved from config to allow admins to modify
|
|
// Put agent second for compatibility with old configs like Namalsk custom zombies.
|
|
|
|
if (count _this == 1) then {
|
|
//Called from init EH
|
|
["", (_this select 0)] execFSM "\z\AddOns\dayz_code\system\zombie_agent.fsm";
|
|
} else {
|
|
//Called from local EH
|
|
["", (_this select 0), true] execFSM "\z\AddOns\dayz_code\system\zombie_agent.fsm";
|
|
}; |