mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- fixed explosions in World Tour.
A classic result of trying to add new stuff to Duke's spaghetti code, shit like this would not happen if this code wasn't this poorly structured. Fixes #360 and most of #357
This commit is contained in:
parent
e4fa695b57
commit
775c4a3b51
1 changed files with 1 additions and 1 deletions
|
@ -473,7 +473,7 @@ SKIPWALLCHECK:
|
|||
hittype[j].picnum = FLAMETHROWERFLAME;
|
||||
}
|
||||
|
||||
if (s->picnum != SHRINKSPARK && (!isWorldTour() && s->picnum != LAVAPOOL))
|
||||
if (s->picnum != SHRINKSPARK && (!isWorldTour() || s->picnum != LAVAPOOL))
|
||||
{
|
||||
if (d < r / 3)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue