mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-12 23:54:35 +00:00
- Fixed: The DECORATE parser was missing some 'break's.
SVN r1314 (trunk)
This commit is contained in:
parent
11d1c41873
commit
34ab6ba862
1 changed files with 3 additions and 0 deletions
|
@ -1076,14 +1076,17 @@ void ParseDecorate (FScanner &sc)
|
||||||
else if (sc.Compare("PICKUP"))
|
else if (sc.Compare("PICKUP"))
|
||||||
{
|
{
|
||||||
ParseOldDecoration (sc, DEF_Pickup);
|
ParseOldDecoration (sc, DEF_Pickup);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
else if (sc.Compare("BREAKABLE"))
|
else if (sc.Compare("BREAKABLE"))
|
||||||
{
|
{
|
||||||
ParseOldDecoration (sc, DEF_BreakableDecoration);
|
ParseOldDecoration (sc, DEF_BreakableDecoration);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
else if (sc.Compare("PROJECTILE"))
|
else if (sc.Compare("PROJECTILE"))
|
||||||
{
|
{
|
||||||
ParseOldDecoration (sc, DEF_Projectile);
|
ParseOldDecoration (sc, DEF_Projectile);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
// without the option of game filters following, anything but an opening brace
|
// without the option of game filters following, anything but an opening brace
|
||||||
|
|
Loading…
Reference in a new issue