3
0
Mirror von https://github.com/ViaVersion/ViaVersion.git synchronisiert 2024-07-30 19:08:03 +02:00
Dieser Commit ist enthalten in:
KennyTV 2019-04-29 11:03:54 +02:00
Ursprung da7a57026d
Commit 73a62b8123

Datei anzeigen

@ -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;