mirror of
https://github.com/DRE2N/DungeonsXL.git
synced 2024-11-28 21:48:43 +01:00
Fix global sign check
This commit is contained in:
parent
e04ad0949f
commit
0641056686
@ -206,7 +206,7 @@ public class GlobalProtectionListener implements Listener {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!Category.SIGNS.containsBlock(clickedBlock)) {
|
if (Category.SIGNS.containsBlock(clickedBlock)) {
|
||||||
// Check Group Signs
|
// Check Group Signs
|
||||||
if (GroupSign.playerInteract(clickedBlock, player)) {
|
if (GroupSign.playerInteract(clickedBlock, player)) {
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
|
Loading…
Reference in New Issue
Block a user