Fix paperpatch

This commit is contained in:
KennyTV 2019-04-29 11:03:54 +02:00
parent da7a57026d
commit 73a62b8123
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ public class PaperPatch extends ViaBukkitListener {
public void onPlace(BlockPlaceEvent e) {
if (isOnPipe(e.getPlayer())) {
Location location = e.getPlayer().getLocation();
Location diff = location.subtract(e.getBlock().getLocation().add(0.5D, 0, 0.5D));
Location diff = location.clone().subtract(e.getBlock().getLocation().add(0.5D, 0, 0.5D));
Material block = e.getBlockPlaced().getType();
if (isPlacable(block)) {
return;