Skip to content

Commit

Permalink
Fixed bug where off-grid placement of blocks would sometimes fail. (#426
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Phylogeny authored and AlgorithmX2 committed Aug 26, 2018
1 parent 08c3209 commit 636e158
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -100,7 +100,7 @@ public boolean canPlaceBlockOnSide(
final EntityPlayer player,
final ItemStack stack )
{
return canPlaceBlockHere( worldIn, pos, side, player, stack, false );
return canPlaceBlockHere( worldIn, pos, side, player, stack, ClientSide.offGridPlacement( player ) );
}

public boolean vanillaStylePlacementTest(
Expand Down

0 comments on commit 636e158

Please sign in to comment.