aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorTechnus <daniel112092@gmail.com>2017-08-06 11:50:35 +0200
committerTechnus <daniel112092@gmail.com>2017-08-06 11:50:35 +0200
commit3566dbcd25624d691b6a328eaa9331394abb512d (patch)
tree8cb4420bf4b03547489e0bedd00c7037b1e5f546 /src/main/java
parent1f14dbaa49c0117dd3c3d003cf9acd3d739ec239 (diff)
downloadGT5-Unofficial-3566dbcd25624d691b6a328eaa9331394abb512d.tar.gz
GT5-Unofficial-3566dbcd25624d691b6a328eaa9331394abb512d.tar.bz2
GT5-Unofficial-3566dbcd25624d691b6a328eaa9331394abb512d.zip
Add proper DreamLoader
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/github/technus/tectech/loader/DreamCraftRecipeLoader.java11
-rw-r--r--src/main/java/com/github/technus/tectech/loader/RecipeLoader.java6
-rw-r--r--src/main/java/openmodularturrets/entity/projectiles/projectileEM.java4
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) {