Skip to content

Commit

Permalink
Moved delayed recipe loading to postInit (bdew-minecraft#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdew committed Dec 15, 2015
1 parent b8740a1 commit 746bcf6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
gendustry.version=1.6.3
gendustry.version=1.6.4
gendustry.api.version=2.3.0
curseforge.id=70492

Expand Down
2 changes: 1 addition & 1 deletion src/net/bdew/gendustry/Gendustry.scala
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ object Gendustry {
}

Upgrades.init()
TuningLoader.loadDelayed()
if (ForestryHelper.haveRoot("Bees")) {
CustomContent.registerBranches()
CustomContent.registerSpecies()
Expand All @@ -112,6 +111,7 @@ object Gendustry {

@EventHandler
def postInit(event: FMLPostInitializationEvent) {
TuningLoader.loadDelayed()
if (ForestryHelper.haveRoot("Bees")) {
CustomContent.registerTemplates()
CustomContent.registerMutations()
Expand Down

0 comments on commit 746bcf6

Please sign in to comment.