Allow adding FCS to static weapons

This commit is contained in:
Nicolás Badano 2015-02-15 17:26:08 -03:00
parent b74175ec9e
commit cb15a7106c

View File

@ -36,6 +36,11 @@ class Extended_Init_EventHandlers {
serverInit = QUOTE(_this call FUNC(vehicleInit)); serverInit = QUOTE(_this call FUNC(vehicleInit));
}; };
}; };
class StaticWeapon {
class ADDON {
serverInit = QUOTE(_this call FUNC(vehicleInit));
};
};
}; };
class Extended_Respawn_EventHandlers { class Extended_Respawn_EventHandlers {
@ -64,6 +69,11 @@ class Extended_Respawn_EventHandlers {
respawn = QUOTE(_this call FUNC(vehicleInit)); respawn = QUOTE(_this call FUNC(vehicleInit));
}; };
}; };
class StaticWeapon {
class ADDON {
respawn = QUOTE(_this call FUNC(vehicleInit));
};
};
}; };
class Extended_FiredBIS_EventHandlers { class Extended_FiredBIS_EventHandlers {
@ -92,4 +102,9 @@ class Extended_FiredBIS_EventHandlers {
firedBIS = QUOTE(_this call FUNC(firedEH)); firedBIS = QUOTE(_this call FUNC(firedEH));
}; };
}; };
class StaticWeapon {
class ADDON {
firedBIS = QUOTE(_this call FUNC(firedEH));
};
};
}; };