Patched a door crash bug
thanks LClouds
This commit is contained in:
parent
ac9b3d73e8
commit
7da3b7fc62
1 changed files with 7 additions and 5 deletions
|
@ -75,7 +75,6 @@ public class EventHookContainer
|
|||
public void onSoundEffectResult(PlayBackgroundMusicEvent event)
|
||||
{
|
||||
if (FMLClientHandler.instance().getClient().thePlayer.worldObj.provider.dimensionId == mod_pocketDim.properties.LimboDimensionID)
|
||||
;
|
||||
{
|
||||
this.playMusicForDim(FMLClientHandler.instance().getClient().thePlayer.worldObj);
|
||||
}
|
||||
|
@ -92,6 +91,8 @@ public class EventHookContainer
|
|||
World world = event.entity.worldObj;
|
||||
ItemStack stack = event.entityPlayer.inventory.getCurrentItem();
|
||||
if (stack != null && stack.getItem() instanceof ItemDoor)
|
||||
{
|
||||
if(BaseItemDoor.getDoorToPlace(stack.getItem())!=null)
|
||||
{
|
||||
if (mod_pocketDim.itemDimensionalDoor.tryToPlaceDoor(stack, event.entityPlayer, world,
|
||||
event.x, event.y, event.z, event.face))
|
||||
|
@ -101,6 +102,7 @@ public class EventHookContainer
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ForgeSubscribe
|
||||
public void onWorldLoad(WorldEvent.Load event)
|
||||
|
|
Loading…
Add table
Reference in a new issue