diff --git a/Source/Core/ZDoom/ZScriptActorStructure.cs b/Source/Core/ZDoom/ZScriptActorStructure.cs index b1a44ee3..318fa729 100755 --- a/Source/Core/ZDoom/ZScriptActorStructure.cs +++ b/Source/Core/ZDoom/ZScriptActorStructure.cs @@ -617,9 +617,9 @@ namespace CodeImp.DoomBuilder.ZDoom // try to read in a variable/method. bool bmethod = false; - string[] availablemodifiers = new string[] { "static", "native", "action", "readonly", "protected", "private", "virtual", "override", "meta", "transient", "deprecated", "final", "play", "ui", "clearscope", "virtualscope", "version", "const" }; + string[] availablemodifiers = new string[] { "static", "native", "action", "readonly", "protected", "private", "virtual", "override", "meta", "transient", "deprecated", "final", "play", "ui", "clearscope", "virtualscope", "version", "const", "abstract" }; string[] versionedmodifiers = new string[] { "version", "deprecated" }; - string[] methodmodifiers = new string[] { "action", "virtual", "override", "final" }; + string[] methodmodifiers = new string[] { "action", "virtual", "override", "final", "abstract" }; HashSet modifiers = new HashSet(); List types = new List(); List> typearraylens = new List>();