mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Removed isDedicated checks
This commit is contained in:
parent
5ff54f7d1c
commit
ab238cf404
@ -28,7 +28,6 @@ _ammo = _this select 4;
|
|||||||
_magazine = _this select 5;
|
_magazine = _this select 5;
|
||||||
_bullet = _this select 6;
|
_bullet = _this select 6;
|
||||||
|
|
||||||
if (isDedicated) exitWith {};
|
|
||||||
if (!hasInterface) exitWith {};
|
if (!hasInterface) exitWith {};
|
||||||
if (!alive _bullet) exitWith {};
|
if (!alive _bullet) exitWith {};
|
||||||
if (!GVAR(enabled)) exitWith {};
|
if (!GVAR(enabled)) exitWith {};
|
||||||
|
@ -27,7 +27,6 @@ private ["_unit", "_bullet"];
|
|||||||
_unit = _this select 0;
|
_unit = _this select 0;
|
||||||
_bullet = _this select 6;
|
_bullet = _this select 6;
|
||||||
|
|
||||||
if (isDedicated) exitWith {false};
|
|
||||||
if (!hasInterface) exitWith {false};
|
if (!hasInterface) exitWith {false};
|
||||||
if (!(_bullet isKindOf "BulletBase")) exitWith {false};
|
if (!(_bullet isKindOf "BulletBase")) exitWith {false};
|
||||||
if (_unit distanceSqr ACE_player > 9000000) exitWith {false};
|
if (_unit distanceSqr ACE_player > 9000000) exitWith {false};
|
||||||
|
Loading…
Reference in New Issue
Block a user