JUDGEMENT!

This commit is contained in:
Vaern 2023-02-23 10:05:50 -08:00
parent 77cc85efe1
commit 204b94cf60
3 changed files with 3 additions and 0 deletions

View File

@ -217,6 +217,7 @@ public class BlockBobble extends BlockContainer implements IGUIProvider {
}
@Override
@SideOnly(Side.CLIENT)
public GuiScreen provideGUI(int ID, EntityPlayer player, World world, int x, int y, int z) {
return new GUIScreenBobble((TileEntityBobble) world.getTileEntity(x, y, z));
}

View File

@ -64,6 +64,7 @@ public class BlockArmorTable extends Block implements IGUIProvider {
}
@Override
@SideOnly(Side.CLIENT)
public GuiScreen provideGUI(int ID, EntityPlayer player, World world, int x, int y, int z) {
return new GUIArmorTable(player.inventory);
}

View File

@ -176,6 +176,7 @@ public class NTMAnvil extends BlockFalling implements ITooltipProvider, IGUIProv
}
@Override
@SideOnly(Side.CLIENT)
public GuiScreen provideGUI(int ID, EntityPlayer player, World world, int x, int y, int z) {
return new GUIAnvil(player.inventory, ((NTMAnvil)world.getBlock(x, y, z)).tier);
}