9
0
mirror of https://github.com/Xiao-MoMi/craft-engine.git synced 2026-01-06 15:52:03 +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) { for (Key component : this.components) {
Object componentObj = item1.getExactComponent(component); Object componentObj = item1.getExactComponent(component);
if (componentObj != null) { if (componentObj != null) {
item3.setComponent(component, componentObj); item3.setExactComponent(component, componentObj);
} }
} }
} }

View File

@@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx1G
# Project settings # Project settings
# Rule: [major update].[feature update].[bug fix] # Rule: [major update].[feature update].[bug fix]
project_version=0.0.62.1 project_version=0.0.62.2
config_version=44 config_version=44
lang_version=24 lang_version=24
project_group=net.momirealms project_group=net.momirealms