mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
fix error in canUseFCS
This commit is contained in:
@ -11,7 +11,27 @@ class Extended_PostInit_EventHandlers {
|
|||||||
};
|
};
|
||||||
|
|
||||||
class Extended_Init_EventHandlers {
|
class Extended_Init_EventHandlers {
|
||||||
class AllVehicles {
|
class Tank {
|
||||||
|
class ADDON {
|
||||||
|
clientInit = QUOTE(_this call FUNC(vehicleInit));
|
||||||
|
};
|
||||||
|
};
|
||||||
|
class Car {
|
||||||
|
class ADDON {
|
||||||
|
clientInit = QUOTE(_this call FUNC(vehicleInit));
|
||||||
|
};
|
||||||
|
};
|
||||||
|
class Helicopter {
|
||||||
|
class ADDON {
|
||||||
|
clientInit = QUOTE(_this call FUNC(vehicleInit));
|
||||||
|
};
|
||||||
|
};
|
||||||
|
class Plane {
|
||||||
|
class ADDON {
|
||||||
|
clientInit = QUOTE(_this call FUNC(vehicleInit));
|
||||||
|
};
|
||||||
|
};
|
||||||
|
class Ship_F {
|
||||||
class ADDON {
|
class ADDON {
|
||||||
clientInit = QUOTE(_this call FUNC(vehicleInit));
|
clientInit = QUOTE(_this call FUNC(vehicleInit));
|
||||||
};
|
};
|
||||||
|
@ -12,5 +12,5 @@
|
|||||||
|
|
||||||
#include "script_component.hpp"
|
#include "script_component.hpp"
|
||||||
|
|
||||||
getNumber ([configFile >> "CfgVehicles" >> typeOf _vehicle, [_player] call EFUNC(common,getTurretIndex)] call EFUNC(common,getTurretConfigPath) >> QGVAR(Enabled)) == 1
|
getNumber ([configFile >> "CfgVehicles" >> typeOf vehicle ACE_player, [ACE_player] call EFUNC(common,getTurretIndex)] call EFUNC(common,getTurretConfigPath) >> QGVAR(Enabled)) == 1
|
||||||
&& {cameraView == "GUNNER"}
|
&& {cameraView == "GUNNER"}
|
||||||
|
Reference in New Issue
Block a user