diff --git a/src/main/java/org/cyclops/evilcraft/core/recipe/type/RecipeEnvironmentalAccumulator.java b/src/main/java/org/cyclops/evilcraft/core/recipe/type/RecipeEnvironmentalAccumulator.java index 6f1849e82c..73016430b4 100644 --- a/src/main/java/org/cyclops/evilcraft/core/recipe/type/RecipeEnvironmentalAccumulator.java +++ b/src/main/java/org/cyclops/evilcraft/core/recipe/type/RecipeEnvironmentalAccumulator.java @@ -117,7 +117,9 @@ public ItemStack assemble(RecipeEnvironmentalAccumulator.Inventory inv, HolderLo ItemStack itemStack = getResultItem(registryAccess).copy(); if (!inputStack.isEmpty()) { for (DataComponentType dataComponentType : inputStack.getComponents().keySet()) { - itemStack.set((DataComponentType) dataComponentType, inputStack.get(dataComponentType)); + if (dataComponentType != RegistryEntries.COMPONENT_WEATHER_CONTAINER_TYPE.value()) { + itemStack.set((DataComponentType) dataComponentType, inputStack.get(dataComponentType)); + } } } return itemStack;