diff options
Diffstat (limited to 'src/main/java/pers/gwyog/gtneioreplugin/event/ClientTickHandler.java')
-rw-r--r-- | src/main/java/pers/gwyog/gtneioreplugin/event/ClientTickHandler.java | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/main/java/pers/gwyog/gtneioreplugin/event/ClientTickHandler.java b/src/main/java/pers/gwyog/gtneioreplugin/event/ClientTickHandler.java deleted file mode 100644 index cb83a4974d..0000000000 --- a/src/main/java/pers/gwyog/gtneioreplugin/event/ClientTickHandler.java +++ /dev/null @@ -1,19 +0,0 @@ -package pers.gwyog.gtneioreplugin.event; - -import cpw.mods.fml.common.eventhandler.SubscribeEvent; -import cpw.mods.fml.common.gameevent.TickEvent.ClientTickEvent; -import pers.gwyog.gtneioreplugin.util.GTOreLayerHelper; -import pers.gwyog.gtneioreplugin.util.GTSmallOreHelper; - -public class ClientTickHandler { - public boolean hasInitialized = false; - - @SubscribeEvent - public void onTick(ClientTickEvent event) { - if (!hasInitialized) { - new GTOreLayerHelper(); - new GTSmallOreHelper(); - hasInitialized = true; - } - } -} |