mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-02 08:50:17 +01:00
Fixes #1483
This commit is contained in:
parent
5cb94f3e45
commit
98b7a84119
@ -1230,8 +1230,9 @@ public class PlayerEvents extends PlotListener implements Listener {
|
|||||||
Plot plot = area.getOwnedPlot(location);
|
Plot plot = area.getOwnedPlot(location);
|
||||||
if (this.pistonBlocks) {
|
if (this.pistonBlocks) {
|
||||||
try {
|
try {
|
||||||
|
BlockFace dir = event.getDirection();
|
||||||
for (Block pulled : event.getBlocks()) {
|
for (Block pulled : event.getBlocks()) {
|
||||||
location = BukkitUtil.getLocation(pulled.getLocation());
|
location = BukkitUtil.getLocation(pulled.getLocation().add(dir.getModX(), dir.getModY(), dir.getModZ()));
|
||||||
if (!area.contains(location.getX(), location.getZ())) {
|
if (!area.contains(location.getX(), location.getZ())) {
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user