diff --git a/EnemizerLibrary/EnemizerLibrary.csproj b/EnemizerLibrary/EnemizerLibrary.csproj index c2f59af..79edab3 100644 --- a/EnemizerLibrary/EnemizerLibrary.csproj +++ b/EnemizerLibrary/EnemizerLibrary.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 6.1.0.129 + 6.1.0.137 true diff --git a/EnemizerLibrary/Randomization.cs b/EnemizerLibrary/Randomization.cs index 2da54e2..4906592 100644 --- a/EnemizerLibrary/Randomization.cs +++ b/EnemizerLibrary/Randomization.cs @@ -60,8 +60,6 @@ public RomData MakeRandomization(string basePath, int seed, OptionFlags optionfl rand = new Random(seed); - Graph graph = new Graph(new GraphData(this.ROM_DATA, this.optionFlags)); - if (skin != "Unchanged" && skin != "") { ChangeSkin(skin); @@ -100,6 +98,8 @@ public RomData MakeRandomization(string basePath, int seed, OptionFlags optionfl // -----bosses--------------------- if (optionFlags.RandomizeBosses) { + Graph graph = optionflags.UseManualBosses ? null : new Graph(new GraphData(this.ROM_DATA, this.optionFlags)); + this.ROM_DATA.CloseBlindDoor = true; BossRandomizer br;