Uncancel sign interaction in lobby.

This commit is contained in:
garbagemule 2013-08-03 01:14:14 +02:00
parent e6a0f30993
commit 029a976dc7

View File

@ -828,6 +828,9 @@ public class ArenaListener
}
// Sign
else if (event.getClickedBlock().getState() instanceof Sign) {
// Make sure to allow clicking signs
event.setCancelled(false);
Sign sign = (Sign) event.getClickedBlock().getState();
handleSign(sign, p);
}