Fix global sign check

This commit is contained in:
Daniel Saukel 2018-05-13 22:51:51 +02:00
parent e04ad0949f
commit 0641056686

View File

@ -206,7 +206,7 @@ public class GlobalProtectionListener implements Listener {
return;
}
if (!Category.SIGNS.containsBlock(clickedBlock)) {
if (Category.SIGNS.containsBlock(clickedBlock)) {
// Check Group Signs
if (GroupSign.playerInteract(clickedBlock, player)) {
event.setCancelled(true);