Skip to content

Commit

Permalink
Merge pull request #105 from post-kerbin-mining-corporation/dev
Browse files Browse the repository at this point in the history
Fix NRE
  • Loading branch information
ChrisAdderley authored Nov 24, 2024
2 parents cd02bd9 + b1b6e74 commit 700c222
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
Binary file modified GameData/DynamicBatteryStorage/Plugins/DynamicBatteryStorage.dll
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{
"MAJOR":2,
"MINOR":3,
"PATCH":4,
"PATCH":5,
"BUILD":0
},
"KSP_VERSION":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public override bool Initialize(PartModule pm)
{
producer = true;
consumer = false;
resource = gen.resHandler.inputResources[i];
resource = gen.resHandler.outputResources[i];
toMonitor = true;
}
}
Expand Down
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v2.3.5
------
- Fixed a NRE with ModuleGenerator handlers

v2.3.4
------
- Stability updates: breaking the mod will now break it less
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
==============================
Dynamic Battery Storage v2.3.4
Dynamic Battery Storage v2.3.5
==============================

A small utility mod for Kerbal Space Program, intended to support my other projects. Effectively required by Near Future Electrical, CryoEngines, KerballAtomics and CryoTanks.
Expand Down

0 comments on commit 700c222

Please sign in to comment.