Revert "Same hotfix as DT."

This reverts commit 9f2be60526.
This commit is contained in:
Marisa the Magician 2021-05-17 18:57:31 +02:00
commit 5346b420e3

View file

@ -157,7 +157,7 @@ Class ImpalerBurstBolt : Actor
override void Tick()
{
Super.Tick();
frame += 1;
frame++;
if ( frame >= 5 ) frame = 0;
}
action void A_Trace()
@ -535,7 +535,7 @@ Class StarterImpalerBolt : ImpalerBolt
override void Tick()
{
Super.Tick();
frame += 1;
frame++;
if ( frame > 4 ) frame = 0;
if ( isFrozen() ) return;
if ( !target )