mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 12:30:46 +00:00
- World Tour: Fixed missing smoke on burning monsters
Yay, another one-liner...
This commit is contained in:
parent
daabb31bff
commit
44fc452747
1 changed files with 1 additions and 1 deletions
|
@ -613,7 +613,7 @@ int spawn_d(int j, int pn)
|
|||
sp->xrepeat = 32;
|
||||
sp->yrepeat = 32;
|
||||
}
|
||||
else if( sp->picnum == SMALLSMOKE )
|
||||
else if( sp->picnum == SMALLSMOKE || sp->picnum == ONFIRE )
|
||||
{
|
||||
// 64 "money"
|
||||
sp->xrepeat = 24;
|
||||
|
|
Loading…
Reference in a new issue