Merge pull request #302 from ljfa-ag/phantom-bridge

Fix phantom bridge blocks being one block too high on the client
This commit is contained in:
WayofTime 2015-04-18 17:11:29 -04:00
commit e99f545694

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;