NicePack/sources/Zeds/NiceAvoidMarker.uc
2020-02-16 19:53:59 +07:00

11 lines
300 B
Ucode

class NiceAvoidMarker extends AvoidMarker;
function bool RelevantTo(Pawn P){
local NiceZombieFleshpound niceFP;
niceFP = NiceZombieFleshpound(P);
if(niceFP != none && niceFP.IsInState('RageCharging'))
return false;
return super.RelevantTo(P);
}
defaultproperties
{
}