SteamWar/BauSystem
Archiviert
13
0

Hotfix ScriptListener Script Book check

Dieser Commit ist enthalten in:
jojo 2021-01-25 17:22:22 +01:00
Ursprung 64e8217440
Commit 1ddc58d1fb

Datei anzeigen

@ -55,7 +55,7 @@ public class ScriptListener implements Listener {
if(item == null || isNoBook(item) || item.getItemMeta() == null)
return;
if (CommandScript.BOOK.getItemMeta() != null && item.getItemMeta().getDisplayName().equals(CommandScript.BOOK.getItemMeta().getDisplayName())) {
if (CommandScript.BOOK.getItemMeta() != null && item.getItemMeta().hasDisplayName() && item.getItemMeta().getDisplayName().equals(CommandScript.BOOK.getItemMeta().getDisplayName())) {
return;
}