Browse Source

Fix pitdrone body on range attack animation.

residual_point
Night Owl 7 years ago
parent
commit
611b4ef43c
  1. 2
      dlls/rp/pitdrone.cpp

2
dlls/rp/pitdrone.cpp

@ -1088,7 +1088,7 @@ void CPitDrone::HandleAnimEvent(MonsterEvent_t *pEvent) @@ -1088,7 +1088,7 @@ void CPitDrone::HandleAnimEvent(MonsterEvent_t *pEvent)
case PIT_DRONE_AE_SPIT:
{
spikes--;
if( spikes <= 0 )
if( spikes < 0 )
{
return;
}

Loading…
Cancel
Save