mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-26 05:41:45 +00:00
Merge remote-tracking branch 'udb/master'
This commit is contained in:
commit
0c2532e160
1 changed files with 6 additions and 5 deletions
|
@ -278,6 +278,7 @@ namespace CodeImp.DoomBuilder.Map
|
||||||
if (resinfo.Contains("location") && (resinfo["location"] is string)) res.location = (string)resinfo["location"];
|
if (resinfo.Contains("location") && (resinfo["location"] is string)) res.location = (string)resinfo["location"];
|
||||||
if (resinfo.Contains("textures") && (resinfo["textures"] is bool)) res.option1 = (bool)resinfo["textures"];
|
if (resinfo.Contains("textures") && (resinfo["textures"] is bool)) res.option1 = (bool)resinfo["textures"];
|
||||||
if (resinfo.Contains("flats") && (resinfo["flats"] is bool)) res.option2 = (bool)resinfo["flats"];
|
if (resinfo.Contains("flats") && (resinfo["flats"] is bool)) res.option2 = (bool)resinfo["flats"];
|
||||||
|
if (resinfo.Contains("notfortesting") && (resinfo["notfortesting"] is int)) res.notfortesting = Convert.ToBoolean(resinfo["notfortesting"]);
|
||||||
|
|
||||||
// Add resource
|
// Add resource
|
||||||
AddResource(res);
|
AddResource(res);
|
||||||
|
|
Loading…
Reference in a new issue