Hotfix NPE
Dieser Commit ist enthalten in:
Ursprung
ac35ae2a47
Commit
8270b7c0d3
@ -55,7 +55,7 @@ public class ScriptListener implements Listener {
|
|||||||
if(item == null || isNoBook(item) || item.getItemMeta() == null)
|
if(item == null || isNoBook(item) || item.getItemMeta() == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (item.getItemMeta().getDisplayName().equals(CommandScript.BOOK.getItemMeta().getDisplayName())) {
|
if (CommandScript.BOOK.getItemMeta() != null && item.getItemMeta().getDisplayName().equals(CommandScript.BOOK.getItemMeta().getDisplayName())) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren