re-revert logic here

This commit is contained in:
vbawol 2016-04-26 09:28:07 -05:00
parent b37a425d8c
commit 98ffecd417

View File

@ -39,14 +39,14 @@ _jammers = [];
_config = 'CfgEpochClient' call EPOCH_returnConfig;
_jammerRange = getNumber(_config >> "buildingJammerRange");
_jammers = nearestObjects[_targetPos, ["PlotPole_EPOCH"], _jammerRange];
if(count _jammers > 0 && !(_unitClass in _nonJammer))exitWith{
if(_doVariable)then{["<t size='1.6' color='#99ffffff'>Not allowed near a base - Please respawn !</t>", 5] call Epoch_dynamicText;};
if(count _jammers > 0 && (_unitClass in _nonJammer))exitWith{
if(_doVariable)then{["<t size='1.6' color='#99ffffff'>Not allowed near a base - Please respawn !</t>", 5] call Epoch_dynamicText;};
};
_restricted = [];
_restricted = nearestObjects [_targetPos, ["ProtectionZone_Invisible_F"], _nonTraderAIRange];
if(count _restricted > 0 && !(_unitClass in _nonTrader))exitWith{
if(_doVariable)then{["<t size='1.6' color='#99ffffff'>Not allowed near a trader - Please respawn !</t>", 5] call Epoch_dynamicText;};
if(count _restricted > 0 && (_unitClass in _nonTrader))exitWith{
if(_doVariable)then{["<t size='1.6' color='#99ffffff'>Not allowed near a trader - Please respawn !</t>", 5] call Epoch_dynamicText;};
};
_disableAI = {
@ -124,4 +124,4 @@ _trgt setVariable ["EPOCH_antagBomb", _bomb, true];
if !(isNull _unit) then {
// send to server
[_unit] remoteExec ["EPOCH_localCleanup",2];
};
};