Players are able to use flares inside a vehicle now

Also remove FNC_GetSetPos. It is no longer needed or used.

Made by @Victor-the-Cleaner
This commit is contained in:
A Man
2022-04-19 14:53:12 +02:00
parent 8090e52beb
commit bde803b6d3
4 changed files with 27 additions and 18 deletions

View File

@@ -1,9 +1,3 @@
private "_pos";
_pos = getPosASL (_this select 0);
if !(surfaceIsWater _pos) then {
_pos = ASLToATL _pos;
};
_pos
local _pos = getPosATL (_this select 0);
if (surfaceIsWater _pos) then {_pos = ATLToASL _pos;};
_pos