Skip to content

Commit

Permalink
Fixed potential crash with NEI item subsets. Releasing 1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bdew committed Nov 10, 2013
1 parent ade8a62 commit 7a71481
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ root=build
modname=neiaddons
version.major=1
version.minor=9
version.patch=2
version.patch=3
version.suffix=-DEV
forge.version=9.10.0.819
mc.version=1.6.2
Expand Down
3 changes: 3 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ NEI Addons
Changelog
=========

###v1.9.3 - Released 10/11/2013
* Fixed potential crash with NEI item subsets (those affected might need to manually clean NEISubset.cfg to take effect)

###v1.9.2 - Released 29/09/2013
* Workaround for NEI not showing items with NBT data outside cheat mode. See http://bit.ly/1aaP3wQ for details.

Expand Down
3 changes: 2 additions & 1 deletion src/net/bdew/neiaddons/extrabees/AddonExtraBeesClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,8 @@ public static void load() {
e.printStackTrace();
return;
}

API.getRangeTag("Extra Bees").saveTag = false;

AddonExtraBees.allBeeSpecies = GeneticsUtils.getAllBeeSpecies(AddonExtraBees.loadBlacklisted);
registerSerums();
API.registerRecipeHandler(new IsolatorRecipeHandler());
Expand Down
2 changes: 2 additions & 0 deletions src/net/bdew/neiaddons/forestry/bees/BeeHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ private static void addHandlers() {
}

public static void setup() {
API.getRangeTag("Forestry").saveTag = false;

root = (IBeeRoot) AlleleManager.alleleRegistry.getSpeciesRoot("rootBees");
allSpecies = GeneticsUtils.getAllBeeSpecies(AddonForestry.loadBlacklisted);

Expand Down

0 comments on commit 7a71481

Please sign in to comment.