Skip to content
Snippets Groups Projects
Commit 0293c455 authored by sphere's avatar sphere
Browse files

Don't error out of Lua parsing when mobjinfo[] isn't a object definition

parent 9afe69ff
No related branches found
No related tags found
No related merge requests found
...@@ -139,8 +139,7 @@ namespace CodeImp.DoomBuilder.SRB2 ...@@ -139,8 +139,7 @@ namespace CodeImp.DoomBuilder.SRB2
token = ReadToken(); token = ReadToken();
if (token != "=") if (token != "=")
{ {
ReportError("Invalid object definition, missing ="); continue;
return false;
} }
SkipWhitespace(true); SkipWhitespace(true);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment