1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

safety check in CustomItemDataService

This commit is contained in:
Josh 2020-06-12 18:01:19 -04:00 committed by GitHub
parent 56bd432719
commit e989969713
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,9 @@ public class CustomItemDataService implements PersistentDataService, Keyed {
} }
public Optional<String> getItemData(ItemStack item) { public Optional<String> getItemData(ItemStack item) {
if (item.getItemMeta() == null) {
return Optional.empty();
}
return getItemData(item.getItemMeta()); return getItemData(item.getItemMeta());
} }