mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-26 22:01:45 +00:00
Internal: removed ambiguous method override.
This commit is contained in:
parent
6df641564c
commit
05d097a713
2 changed files with 1 additions and 5 deletions
|
@ -39,10 +39,6 @@ namespace CodeImp.DoomBuilder.GZBuilder.GZDoom
|
|||
return Parse(stream, sourcefilename, false, false);
|
||||
}
|
||||
|
||||
public bool Parse(Stream stream, string sourcefilename, bool processIncludes) {
|
||||
return Parse(stream, sourcefilename, processIncludes, false);
|
||||
}
|
||||
|
||||
public bool Parse(Stream stream, string sourcefilename, bool processIncludes, bool isinclude) {
|
||||
base.Parse(stream, sourcefilename);
|
||||
|
||||
|
|
|
@ -1567,7 +1567,7 @@ namespace CodeImp.DoomBuilder {
|
|||
if (stream != null) {
|
||||
AcsParserSE parser = new AcsParserSE();
|
||||
parser.OnInclude = updateScriptsFromLocation;
|
||||
parser.Parse(stream, "SCRIPTS", true);
|
||||
parser.Parse(stream, "SCRIPTS", true, false);
|
||||
|
||||
if(parser.NamedScripts.Count > 0 && (FormatInterface is DoomMapSetIO || FormatInterface is HexenMapSetIO)) {
|
||||
List<string> names = new List<string>();
|
||||
|
|
Loading…
Reference in a new issue