Removed isDedicated checks

This commit is contained in:
ulteq 2015-04-09 20:39:38 +02:00
parent 5ff54f7d1c
commit ab238cf404
2 changed files with 0 additions and 2 deletions

View File

@ -28,7 +28,6 @@ _ammo = _this select 4;
_magazine = _this select 5;
_bullet = _this select 6;
if (isDedicated) exitWith {};
if (!hasInterface) exitWith {};
if (!alive _bullet) exitWith {};
if (!GVAR(enabled)) exitWith {};

View File

@ -27,7 +27,6 @@ private ["_unit", "_bullet"];
_unit = _this select 0;
_bullet = _this select 6;
if (isDedicated) exitWith {false};
if (!hasInterface) exitWith {false};
if (!(_bullet isKindOf "BulletBase")) exitWith {false};
if (_unit distanceSqr ACE_player > 9000000) exitWith {false};