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 CAManBase {
|
||||
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 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 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 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 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 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 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