embeddedt 2024-03-31 16:08:39 -04:00
parent e1059e15e7
commit 8873a055bc
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -21,6 +21,8 @@ public class SetNameFunctionMixin {
public ItemStack deferSetName(ItemStack stack, Component name) {
if (CommonLogic.isEmptyPendingMap(stack))
ExplorationMapFunctionLogic.cacheName(stack, name);
else
stack.setHoverName(name);
return stack;
}
}