9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2025-12-27 19:09:08 +00:00

修复keep components

This commit is contained in:
XiaoMoMi
2025-08-23 02:59:26 +08:00
parent 6061216628
commit 671169ba2c
2 changed files with 2 additions and 2 deletions

View File

@@ -214,7 +214,7 @@ public class CustomSmithingTransformRecipe<T> extends AbstractedFixedResultRecip
for (Key component : this.components) {
Object componentObj = item1.getExactComponent(component);
if (componentObj != null) {
item3.setComponent(component, componentObj);
item3.setExactComponent(component, componentObj);
}
}
}