Fix phantom bridge blocks being one block too high on the client

Fixes #301
This commit is contained in:
ljfa-ag 2015-04-16 17:02:47 +02:00
parent 3d89bd6b90
commit 2e5ec19c7d

View file

@ -257,6 +257,11 @@ public class SigilOfTheBridge extends EnergyItems implements ArmourUpgrade
{
verticalOffset--;
}
if (world.isRemote)
{
verticalOffset--;
}
int posX = (int) Math.round(player.posX - 0.5f);
int posY = (int) player.posY;