Skip to content

Commit

Permalink
Deepnest_39 logic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nerthul11 committed Jan 7, 2025
1 parent 1badc0d commit 97cc3a4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BreakableWallRandomizer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace BreakableWallRandomizer
public class BreakableWallRandomizer : Mod, IGlobalSettings<BWR_Settings>
{
new public string GetName() => "Breakable Wall Randomizer";
public override string GetVersion() => "3.0.3.0";
public override string GetVersion() => "3.0.3.1";
public BWR_Settings GS { get; set; } = new();
private static BreakableWallRandomizer _instance;
public BreakableWallRandomizer() : base()
Expand Down
4 changes: 2 additions & 2 deletions BreakableWallRandomizer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<Product>BreakableWallRandomizer</Product>
<Description>A Randomizer add-on for wall and floor objects.</Description>
<Copyright>Copyright ©2023</Copyright>
<AssemblyVersion>3.0.3.0</AssemblyVersion>
<FileVersion>3.0.3.0</FileVersion>
<AssemblyVersion>3.0.3.1</AssemblyVersion>
<FileVersion>3.0.3.1</FileVersion>
<OutputPath>bin\$(Configuration)\</OutputPath>
<LangVersion>latest</LangVersion>
</PropertyGroup>
Expand Down
16 changes: 15 additions & 1 deletion Resources/Data/BreakableWallObjects.json
Original file line number Diff line number Diff line change
Expand Up @@ -710,6 +710,18 @@
"logicSubstitutions": {
"Deepnest_39": {
"Deepnest_39[door1]": "(Deepnest_39[door1] + Wall-Weaver's_Den_Entrance)"
},
"Deepnest_39[left1]": {
"Deepnest_39[door1]": "(Deepnest_39[door1] + Wall-Weaver's_Den_Entrance)"
},
"Deepnest_39[top1]": {
"Deepnest_39[door1]": "(Deepnest_39[door1] + Wall-Weaver's_Den_Entrance)"
},
"Deepnest_39[right1]": {
"Deepnest_39[door1]": "(Deepnest_39[door1] + Wall-Weaver's_Den_Entrance)"
},
"Rancid_Egg-Dark_Deepnest": {
"Deepnest_39[door1]": "(Deepnest_39[door1] + Wall-Weaver's_Den_Entrance)"
}
}
},
Expand All @@ -727,7 +739,9 @@
"groupWalls": [],
"group": "",
"logic": "(LANTERN | NOLANTERN?FALSE | DARKROOMS) + (Deepnest_39[left1] | Deepnest_39[top1] | Deepnest_39[door1] + Wall-Weaver's_Den_Entrance | Deepnest_39[right1] + (LEFTCLAW | WINGS + RIGHTCLAW | (WINGS | RIGHTCLAW) + ENEMYPOGOS | Plank-Deepnest_Dark_Room_Egg))",
"logicOverrides": {},
"logicOverrides": {
"Rancid_Egg-Dark_Deepnest": "(ORIG) | Deepnest_39[right1] + Plank-Deepnest_Dark_Room_Egg"
},
"logicSubstitutions": {}
},
{
Expand Down

0 comments on commit 97cc3a4

Please sign in to comment.