Fixed infinite loop when stepping on a right facing conveyor with the clock
powerup.
This commit is contained in:
parent
9fdc6c1467
commit
5009b40963
2
rc.c
2
rc.c
|
@ -4454,8 +4454,8 @@ void dotileeffects(sprite_t *s) {
|
||||||
} else if (s->id == P_PLANT) {
|
} else if (s->id == P_PLANT) {
|
||||||
movex(s, 1.5);
|
movex(s, 1.5);
|
||||||
}
|
}
|
||||||
finished = B_TRUE;
|
|
||||||
}
|
}
|
||||||
|
finished = B_TRUE;
|
||||||
} else if (tt->id == T_LEFT) {
|
} else if (tt->id == T_LEFT) {
|
||||||
if (globpowerup != PW_CLOCK) {
|
if (globpowerup != PW_CLOCK) {
|
||||||
if (!ismonster(s->id) && !isfruit(s->id)) {
|
if (!ismonster(s->id) && !isfruit(s->id)) {
|
||||||
|
|
Loading…
Reference in New Issue