From 5adbe583926b4e720ad4803e69ad12684b86e83a Mon Sep 17 00:00:00 2001 From: oorzkws <65210810+oorzkws@users.noreply.github.com> Date: Tue, 10 Sep 2024 23:58:20 -0600 Subject: [PATCH] cage check: skip void & biomass that titanium becomes biomass? worms work in mysterious ways. --- data-final-fixes.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data-final-fixes.lua b/data-final-fixes.lua index ab5a101..f102106 100644 --- a/data-final-fixes.lua +++ b/data-final-fixes.lua @@ -86,6 +86,9 @@ end -- Scan for cages if dev_mode then for recipe_name, recipe in pairs(data.raw.recipe) do + if recipe_name:find('%-pyvoid$') or recipe_name:find('^biomass%-') then + goto NEXT_RECIPE_CAGECHECK + end if not recipe.ingredients then goto NEXT_RECIPE_CAGECHECK end