Merge pull request #3110 from acemod/gogglesfiredBIS

fix usage of deprectated fired XEH, fix #3088
This commit is contained in:
commy2 2016-01-05 21:52:53 +01:00
commit 279b48f112

View File

@ -14,15 +14,15 @@ class Extended_PostInit_EventHandlers {
class Extended_Killed_EventHandlers { class Extended_Killed_EventHandlers {
class CAManBase { class CAManBase {
class ADDON { class ADDON {
killed = QUOTE(_this call FUNC(handleKilled)); clientKilled = QUOTE(_this call FUNC(handleKilled));
}; };
}; };
}; };
class Extended_Fired_EventHandlers { class Extended_FiredBIS_EventHandlers {
class CAManBase { class CAManBase {
class ADDON { class ADDON {
fired = QUOTE(if (local (_this select 0)) then {_this call FUNC(handleFired)}); clientFiredBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(handleFired)});
}; };
}; };
}; };
@ -30,7 +30,7 @@ class Extended_Fired_EventHandlers {
class Extended_Explosion_EventHandlers { class Extended_Explosion_EventHandlers {
class CAManBase { class CAManBase {
class ADDON { class ADDON {
explosion = QUOTE(if (local (_this select 0)) then {_this call FUNC(handleExplosion)}); clientExplosion = QUOTE(if (local (_this select 0)) then {_this call FUNC(handleExplosion)});
}; };
}; };
}; };