🌐Dea Dia System (ALPHA)


A group of planets still orbiting their dead star.

Content
3 days ago
2.0
11.5K
Factorio: Space Age Icon Space Age Mod
Planets Transportation Logistics Combat Armor Enemies Environment Mining Fluids Logistic network Manufacturing Power

i The mod overrides the recycling recipe for jelly

3 months ago

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.

New response