Skip to content
This repository has been archived by the owner on Jul 13, 2022. It is now read-only.

Commit

Permalink
Added dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
roryclaasen committed Jan 30, 2016
1 parent 97c5eb0 commit 0aed7c6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/net/roryclaasen/rorysmod/RorysMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import cpw.mods.fml.common.registry.EntityRegistry;
import cpw.mods.fml.common.registry.GameRegistry;

@Mod(modid = RorysMod.MODID, name = RorysMod.NAME)
@Mod(modid = RorysMod.MODID, name = RorysMod.NAME, dependencies = "after:IC2")
public class RorysMod {

@SidedProxy(clientSide = "net.roryclaasen.rorysmod.proxy.ClientProxy", serverSide = "net.roryclaasen.rorysmod.proxy.CommonProxy")
Expand Down Expand Up @@ -77,7 +77,7 @@ public Item getTabIconItem() {

blocks.preInit(event);
items.preInit(event);

blocks.register(event);
items.register(event);
}
Expand All @@ -89,11 +89,11 @@ public void init(FMLInitializationEvent event) {
items.createRecipes();

registerEventHandlers();

NetworkRegistry.INSTANCE.registerGuiHandler(this, new GuiHandler());

proxy.init(event);

GameRegistry.registerTileEntity(TileEntityRifleTable.class, "RifleTable");
EntityRegistry.registerModEntity(EntityLaser.class, "laser", 0, RorysMod.instance, 64, 10, true);
}
Expand Down

0 comments on commit 0aed7c6

Please sign in to comment.