Added digging stat tracker and upgrade to Living Armour. Added chat message for when the armour upgrades.
This commit is contained in:
parent
f0331b4d4d
commit
00adb96931
11 changed files with 234 additions and 24 deletions
|
@ -1,5 +1,8 @@
|
|||
package WayofTime.bloodmagic.proxy;
|
||||
|
||||
import net.minecraftforge.common.MinecraftForge;
|
||||
import net.minecraftforge.fml.common.FMLCommonHandler;
|
||||
import WayofTime.bloodmagic.util.handler.EventHandler;
|
||||
import WayofTime.bloodmagic.util.helper.InventoryRenderHelper;
|
||||
|
||||
public class CommonProxy
|
||||
|
@ -11,6 +14,9 @@ public class CommonProxy
|
|||
|
||||
public void preInit()
|
||||
{
|
||||
Object obj = new EventHandler();
|
||||
MinecraftForge.EVENT_BUS.register(obj);
|
||||
FMLCommonHandler.instance().bus().register(obj);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue