Fixed bug in DDLoot, delayed loot generation

Changed DDLoot to use the correct item IDs when adding DD items to
chests. Moved loot chest registration from init() to postInit() in the
hopes that we'll be able to catch the loot of other mods that also hook
into Vanilla chests.
This commit is contained in:
SenseiKiwi
2013-06-15 01:58:53 -04:00
parent 1c7028cd1c
commit 03d60dc07d
2 changed files with 18 additions and 17 deletions

View File

@@ -395,15 +395,14 @@ public class mod_pocketDim
proxy.loadTextures();
proxy.registerRenderers();
//Register loot chests
DDLoot.registerInfo();
}
@PostInit
public void PostInit(FMLPostInitializationEvent event)
{
{
//Register loot chests
DDLoot.registerInfo();
}
@ServerStopping