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

don't get it twice

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

View File

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