Playing All Planets mod. Didn't make it yet to Dea Dia, however, it looks like I cannot upcycle jelly on Gleba anymore.
Probably the mod needs a setting like Cerys for vanilla recipes: cerys-enforce-vanilla-recycling-recipes=Enforce vanilla recycling recipes
Currently I have modified it locally like this to preserve the original recipe:
$ git diff -u
diff --git a/data-final-fixes.lua b/data-final-fixes.lua
index 67ac5ee..0d56202 100644
--- a/data-final-fixes.lua
+++ b/data-final-fixes.lua
@@ -23,7 +23,11 @@ stack_inserter_recycling.results = {
}
-
+recipes["jelly-recycling"]["ingredients"] =
+ { { type = "item", name = "jelly", amount = 1 } }
+recipes["jelly-recycling"]["results"] = {
+ { type = "item", name = "jelly", amount = 0, extra_count_fraction = 0.25 },
+ }
-- reset this property, so other mods won't make the thermodynamics lab obsolate.
If needed I can provide a patch to have a configuration checkbox like Cerys mod.