
TheCrafter4000
-
Posts
33 -
Joined
-
Last visited
Posts posted by TheCrafter4000
-
-
Your onBlockActivated methode has not the right arguments:
onBlockActivated(World worldIn, int x, int y , int z, IBlockState state, EntityPlayer playerIn, EnumFacing side, float hitX, float hitY, float hitZ)
Right is:
onBlockActivated(World worldIn, BlockPos pos, IBlockState state, EntityPlayer playerIn, EnumFacing side, float hitX, float hitY, float hitZ)
-
Your BasicBlock#getFacingFromEntity() Method is empty
-
What does your registerRender() Methode ?
-
Write a second class that extends your TileEnity and register it.
-
You must Override the getActualState() Methode in your Block class
-
[1.8]--Custom Crafting Table not Opening GUI
in Modder Support
Posted
You must make a new instance of a BlockPos with the three Integer:
new BlockPos( x, y, z )