Fix phantom bridge blocks being one block too high on the client
Fixes #301
This commit is contained in:
parent
3d89bd6b90
commit
2e5ec19c7d
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue