aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/plugin/fishing
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-02-26 08:08:00 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-02-26 08:08:00 +1000
commit41eb02602c8a6d5899b3e375572ee9990a5a752b (patch)
tree80263f91e6a304fe7ab527fbab18d2810e134aff /src/Java/gtPlusPlus/plugin/fishing
parent90addb9717e2a1bffeec55d064248d6f98835f01 (diff)
downloadGT5-Unofficial-41eb02602c8a6d5899b3e375572ee9990a5a752b.tar.gz
GT5-Unofficial-41eb02602c8a6d5899b3e375572ee9990a5a752b.tar.bz2
GT5-Unofficial-41eb02602c8a6d5899b3e375572ee9990a5a752b.zip
% Made all GTNH recipes use cheaper circuits for all recipes I add.
% Recipe tweaks. % Tried to fluorite ore not having correct recipe outputs during ore processing. (This is still broken due to an invalid output) $ Fixed old fluorite ore not having a valid shapeless recipe. $ Fixed all custom ores trying to register static textures. $ Fixed plugin loading system not registering plugins, I think? $ Fixed missing texture for Nitro Fix.
Diffstat (limited to 'src/Java/gtPlusPlus/plugin/fishing')
-rw-r--r--src/Java/gtPlusPlus/plugin/fishing/Core_Fishing.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/plugin/fishing/Core_Fishing.java b/src/Java/gtPlusPlus/plugin/fishing/Core_Fishing.java
index 909c9c3c50..fed07135fb 100644
--- a/src/Java/gtPlusPlus/plugin/fishing/Core_Fishing.java
+++ b/src/Java/gtPlusPlus/plugin/fishing/Core_Fishing.java
@@ -1,24 +1,26 @@
package gtPlusPlus.plugin.fishing;
import gtPlusPlus.api.interfaces.IPlugin;
+import gtPlusPlus.plugin.manager.Core_Manager;
public class Core_Fishing implements IPlugin {
+ Core_Fishing() {
+ Core_Manager.registerPlugin(this);
+ }
+
@Override
public boolean preInit() {
- // TODO Auto-generated method stub
return true;
}
@Override
public boolean init() {
- // TODO Auto-generated method stub
return true;
}
@Override
public boolean postInit() {
- // TODO Auto-generated method stub
return true;
}