mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
change some DFUNC to FUNC
This commit is contained in:
parent
35b6e04345
commit
6d2e25d40b
@ -14,38 +14,38 @@ class Extended_PostInit_EventHandlers {
|
|||||||
class Extended_FiredBIS_EventHandlers {
|
class Extended_FiredBIS_EventHandlers {
|
||||||
class CAManBase {
|
class CAManBase {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
firedBIS = QUOTE(if (local (_this select 0)) then {_this call DFUNC(firedEHBB);};);
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHBB);};);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
class Tank {
|
class Tank {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
firedBIS = QUOTE(if (local (_this select 0)) then {_this call DFUNC(firedEHOP);};);
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
class Car {
|
class Car {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
firedBIS = QUOTE(if (local (_this select 0)) then {_this call DFUNC(firedEHOP);};);
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
class Helicopter {
|
class Helicopter {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
firedBIS = QUOTE(if (local (_this select 0)) then {_this call DFUNC(firedEHOP);};);
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
class Plane {
|
class Plane {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
firedBIS = QUOTE(if (local (_this select 0)) then {_this call DFUNC(firedEHOP);};);
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
class Ship_F {
|
class Ship_F {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
firedBIS = QUOTE(if (local (_this select 0)) then {_this call DFUNC(firedEHOP);};);
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
class StaticWeapon {
|
class StaticWeapon {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
firedBIS = QUOTE(if (local (_this select 0)) then {_this call DFUNC(firedEHOP);};);
|
firedBIS = QUOTE(if (local (_this select 0)) then {_this call FUNC(firedEHOP);};);
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user