1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00
This commit is contained in:
Josh 2020-06-12 18:52:54 -04:00 committed by GitHub
parent a232d82851
commit 0b4904831b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,14 +45,10 @@ public class CustomItemDataService implements PersistentDataService, Keyed {
} }
public Optional<String> getItemData(ItemStack item) { public Optional<String> getItemData(ItemStack item) {
if (!item.hasItemMeta()) { if (item == null || !item.hasItemMeta()) {
return Optional.empty(); return Optional.empty();
} }
ItemMeta meta = item.getItemMeta(); return getItemData(item.getItemMeta());
if (meta == null) {
return Optional.empty();
}
return getItemData(meta);
} }
public Optional<String> getItemData(ItemMeta meta) { public Optional<String> getItemData(ItemMeta meta) {