mirror of
https://github.com/Xiao-MoMi/craft-engine.git
synced 2025-12-19 15:09:15 +00:00
修复锻造后处理器
This commit is contained in:
@@ -99,8 +99,10 @@ public class CustomSmithingTransformRecipe<T> extends AbstractedFixedResultRecip
|
||||
if (this.mergeComponents) {
|
||||
finalResult = base.mergeCopy(wrappedResult);
|
||||
}
|
||||
for (ItemDataProcessor processor : this.processors) {
|
||||
processor.accept(base, wrappedResult, finalResult);
|
||||
if (this.processors != null) {
|
||||
for (ItemDataProcessor processor : this.processors) {
|
||||
processor.accept(base, wrappedResult, finalResult);
|
||||
}
|
||||
}
|
||||
return finalResult.getItem();
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx1G
|
||||
|
||||
# Project settings
|
||||
# Rule: [major update].[feature update].[bug fix]
|
||||
project_version=0.0.61.5
|
||||
project_version=0.0.61.6
|
||||
config_version=43
|
||||
lang_version=23
|
||||
project_group=net.momirealms
|
||||
|
||||
Reference in New Issue
Block a user