Jump to content

Recommended Posts

Posted

This will allow you to place torches, ladders, redstone etc. on top or on the sides of your block respectively .

 

For 1.6.4

@Override
public boolean isBlockSolidOnSide(World world, int x, int y, int z, ForgeDirection side)
{
return true;
}

 

and for 1.7.2

@Override
public boolean isSideSolid(IBlockAccess world, int x, int y, int z, ForgeDirection side)
{
return true;
}

Guest
This topic is now closed to further replies.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.