mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 13:01:56 +00:00
Never try to early remove rings being used for boost, idiot
This commit is contained in:
parent
7f731907ca
commit
de522bd873
1 changed files with 10 additions and 6 deletions
|
|
@ -3519,16 +3519,20 @@ void A_AttractChase(mobj_t *actor)
|
||||||
if (G_CompatLevel(0x0010))
|
if (G_CompatLevel(0x0010))
|
||||||
blocked |= !!(actor->target->player->bailcharge || actor->target->player->defenseLockout > PUNISHWINDOW);
|
blocked |= !!(actor->target->player->bailcharge || actor->target->player->defenseLockout > PUNISHWINDOW);
|
||||||
|
|
||||||
if (stale || blocked)
|
if (!G_CompatLevel(0x0010) || actor->extravalue2)
|
||||||
{
|
{
|
||||||
if (!G_CompatLevel(0x0010) && !stale)
|
if (stale || blocked)
|
||||||
if (actor->target->player->pickuprings)
|
{
|
||||||
actor->target->player->pickuprings--;
|
if (!G_CompatLevel(0x0010) && !stale)
|
||||||
|
if (actor->target->player->pickuprings)
|
||||||
|
actor->target->player->pickuprings--;
|
||||||
|
|
||||||
P_RemoveMobj(actor);
|
P_RemoveMobj(actor);
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (actor->extravalue2) // Using for ring boost
|
if (actor->extravalue2) // Using for ring boost
|
||||||
{
|
{
|
||||||
// Always fullbright
|
// Always fullbright
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue