aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com')
-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
2 files changed, 12 insertions, 5 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.
}