mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-01-09 08:28:30 +00:00
Fix that players cannot place hanging entities
This commit is contained in:
parent
f4dcc9e786
commit
3bb40a8fff
1 changed files with 1 additions and 1 deletions
|
@ -2357,7 +2357,7 @@ import java.util.regex.Pattern;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Player p = event.getPlayer();
|
Player p = event.getPlayer();
|
||||||
if (p != null) {
|
if (p == null) {
|
||||||
PlotSquared.debug("PlotSquared does not support HangingPlaceEvent for non-players.");
|
PlotSquared.debug("PlotSquared does not support HangingPlaceEvent for non-players.");
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue