diff options
3 files changed, 15 insertions, 6 deletions
diff --git a/src/main/java/com/github/technus/tectech/loader/DreamCraftRecipeLoader.java b/src/main/java/com/github/technus/tectech/loader/DreamCraftRecipeLoader.java new file mode 100644 index 0000000000..cd64c9f537 --- /dev/null +++ b/src/main/java/com/github/technus/tectech/loader/DreamCraftRecipeLoader.java @@ -0,0 +1,11 @@ +package com.github.technus.tectech.loader; + +/** + * Created by Tec on 06.08.2017. + */ +public class DreamCraftRecipeLoader implements Runnable { + @Override + public void run() { + + } +} diff --git a/src/main/java/com/github/technus/tectech/loader/RecipeLoader.java b/src/main/java/com/github/technus/tectech/loader/RecipeLoader.java index c1589072ca..bb76e64a54 100644 --- a/src/main/java/com/github/technus/tectech/loader/RecipeLoader.java +++ b/src/main/java/com/github/technus/tectech/loader/RecipeLoader.java @@ -16,14 +16,10 @@ public class RecipeLoader implements Runnable { - if (Loader.isModLoaded("dreamcraft")) runDreamRun();//TODO init recipes for GTNH version + if (Loader.isModLoaded("dreamcraft")) new DreamCraftRecipeLoader().run();//TODO init recipes for GTNH version else runBloodRun();//TODO init recipes for NON-GTNH version } - private void runDreamRun(){ - - } - private void runBloodRun(){ //Don't init things after UV!!! They don't conform to the standards. } diff --git a/src/main/java/openmodularturrets/entity/projectiles/projectileEM.java b/src/main/java/openmodularturrets/entity/projectiles/projectileEM.java index f6c8db3621..8400915ad2 100644 --- a/src/main/java/openmodularturrets/entity/projectiles/projectileEM.java +++ b/src/main/java/openmodularturrets/entity/projectiles/projectileEM.java @@ -52,7 +52,9 @@ public class projectileEM extends TurretProjectile { avalableEM.removeAmount(false,consumeFromThis.definition.getStackForm(1)); } } - //todo add subspace pollution + //todo make the recipe require some overflow hatches + + //todo add more subspace pollution } protected void onImpact(MovingObjectPosition movingobjectposition) { |