Spindash to spin Flybots faster

btw ring sting change doesn't work yet, somehow
This commit is contained in:
eebrozgi 2025-06-19 15:49:46 +03:00 committed by AJ Martinez
parent da6d7ec6b1
commit fceaad44ab

View file

@ -97,6 +97,13 @@ void Obj_FlybotThink(mobj_t *flybot)
P_KillMobj(flybot, NULL, NULL, 0);
return;
}
// If player is spindashing, spin faster to hint that stun is going down faster
else if (mo->player->spindash)
{
speed *= 2;
//flybot->movedir += FLYBOT_BOB_FREQUENCY;
}
}
flybot->frame = flybot->frame & ~FF_TRANSMASK;