9
0
mirror of https://github.com/Xiao-MoMi/Custom-Crops.git synced 2025-12-19 15:09:25 +00:00

- ItemStack添加.clone()修复ItemsAdder v4

This commit is contained in:
inrhor
2024-07-31 19:55:13 +08:00
parent fed8a2229b
commit c74678b957

View File

@@ -92,7 +92,7 @@ public class ItemsAdderProvider implements CustomProvider {
if (customStack == null) {
return null;
}
return customStack.getItemStack();
return customStack.getItemStack().clone();
}
@Override