Skip to content

Commit

Permalink
Close #357
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredlll08 committed Sep 19, 2016
1 parent c1af913 commit 9ebdcfb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/modtweaker/ModTweaker.java
Expand Up @@ -4,6 +4,8 @@
import minetweaker.MineTweakerImplementationAPI.ReloadEvent;
import minetweaker.runtime.providers.ScriptProviderDirectory;
import minetweaker.util.IEventHandler;
import modtweaker.mods.botania.Botania;
import modtweaker.mods.chisel.Chisel;
import modtweaker.mods.forestry.Forestry;
import modtweaker.mods.randomthings.RandomThings;
import modtweaker.mods.tconstruct.TConstruct;
Expand Down Expand Up @@ -47,6 +49,8 @@ public void init(FMLInitializationEvent event) {
TweakerPlugin.register("forestry", Forestry.class);
TweakerPlugin.register("tconstruct", TConstruct.class);
TweakerPlugin.register("randomthings", RandomThings.class);
TweakerPlugin.register("botania", Botania.class);
TweakerPlugin.register("chisel", Chisel.class);

if (FMLCommonHandler.instance().getSide() == Side.CLIENT) {
MinecraftForge.EVENT_BUS.register(new ClientEvents());
Expand All @@ -57,7 +61,6 @@ public void init(FMLInitializationEvent event) {
@Override
public void handle(ReloadEvent event) {
proxy.registerCommands();

}
});

Expand Down

0 comments on commit 9ebdcfb

Please sign in to comment.