mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-30 21:31:03 +00:00
- fixed freezer projectile not moving.
These endless fallthrough switch/case blocks are a genuine menace. :( Fixes #136
This commit is contained in:
parent
3004185646
commit
a17f529c49
1 changed files with 1 additions and 1 deletions
|
@ -2035,7 +2035,7 @@ void moveweapons_d(void)
|
||||||
}
|
}
|
||||||
case FIREBALL:
|
case FIREBALL:
|
||||||
// Twentieth Anniversary World Tour
|
// Twentieth Anniversary World Tour
|
||||||
if (!isWorldTour()) break;
|
if (s->picnum == FIREBALL && !isWorldTour()) break;
|
||||||
case SHRINKSPARK:
|
case SHRINKSPARK:
|
||||||
case RPG:
|
case RPG:
|
||||||
case FIRELASER:
|
case FIRELASER:
|
||||||
|
|
Loading…
Reference in a new issue