添加SuperItem的null判断...

Signed-off-by: 502647092 <jtb1@163.com>
pull/3/HEAD
502647092 2015-11-18 12:56:45 +08:00
parent f2c7c9c2b1
commit 0de3e1a0c7
1 changed files with 3 additions and 0 deletions

View File

@ -157,6 +157,9 @@ public class PlayerListener implements Listener {
return;
}
final Block b = e.getClickedBlock();
if (b == null || b.getType() == null) {
return;
}
// If that wasn't a shop, search nearby shops
if (b.getType() == Material.WALL_SIGN) {
final Block attached = Util.getAttached(b);