mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 06:42:12 +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"))
|
||||
{
|
||||
ParseOldDecoration (sc, DEF_Pickup);
|
||||
break;
|
||||
}
|
||||
else if (sc.Compare("BREAKABLE"))
|
||||
{
|
||||
ParseOldDecoration (sc, DEF_BreakableDecoration);
|
||||
break;
|
||||
}
|
||||
else if (sc.Compare("PROJECTILE"))
|
||||
{
|
||||
ParseOldDecoration (sc, DEF_Projectile);
|
||||
break;
|
||||
}
|
||||
default:
|
||||
// without the option of game filters following, anything but an opening brace
|
||||
|
|
Loading…
Reference in a new issue