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

Merge pull request #34 from inrhor/main

ItemStack添加.clone()修复ItemsAdder v4
This commit is contained in:
XiaoMoMi
2024-08-02 20:43:13 +08:00
committed by GitHub

View File

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