Fix that players cannot place hanging entities

This commit is contained in:
Traks 2019-12-17 21:04:44 +01:00
parent f4dcc9e786
commit 3bb40a8fff

View File

@ -2357,7 +2357,7 @@ import java.util.regex.Pattern;
return;
}
Player p = event.getPlayer();
if (p != null) {
if (p == null) {
PlotSquared.debug("PlotSquared does not support HangingPlaceEvent for non-players.");
event.setCancelled(true);
return;