Magnet powerup shouldn't work on super powerups.
This commit is contained in:
parent
1a3721f06d
commit
22404cae90
2
rc.c
2
rc.c
|
@ -6681,7 +6681,7 @@ int movesprite(sprite_t *s) {
|
||||||
}
|
}
|
||||||
} // end if !s->invuln
|
} // end if !s->invuln
|
||||||
}
|
}
|
||||||
} else if (haspowerupany(PW_MAGNET) && isfruit(s->id)) {
|
} else if (haspowerupany(PW_MAGNET) && isfruit(s->id) && (isfruit(s->id) != FT_SUPER)) {
|
||||||
sprite_t *who;
|
sprite_t *who;
|
||||||
|
|
||||||
who = haspowerupany(PW_MAGNET);
|
who = haspowerupany(PW_MAGNET);
|
||||||
|
|
Loading…
Reference in New Issue