You need to install the small boats mod on your server. The minimap works because it is client only mod, which means it works on your minecraft and no-one else can see it or has to use it to go on your server. But the Small Boats mod is server and client so you have to install forge on your server and install Small Boats Mod.
-Toby
In your constructor for your block
This thing:
add this to it: setBlockBounds(0.25F, 0.25F, 0.25F, 0.75F, 0.75F, 0.75F);
The numbers are (minX, minY, minZ, maxX, maxY, maxZ)
and then in the class add
public boolean isOpaqueCube()
{
return false;
}
Hope this helps
Hello,
I am trying to make cables for my mod Electricraft.
I have it set up to where the block detects if there is cables around it but I don't know how to detect if energy is needed and get energy from the other cables in the network
Block Code:
Tile Entity Code: