From 44ffe7fe7caa72d5a92f84963dbc6033cee37274 Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Fri, 19 Nov 2021 12:30:46 -0500 Subject: [PATCH] Allow using raw ostrich in raw dishes. --- .../codermobs/animal_materials_overrides.lua | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Bucket_Game-branches/distinguish_meats-vs-211114a/mods/codermobs/codermobs/animal_materials_overrides.lua b/Bucket_Game-branches/distinguish_meats-vs-211114a/mods/codermobs/codermobs/animal_materials_overrides.lua index 1c130a6..07d73be 100644 --- a/Bucket_Game-branches/distinguish_meats-vs-211114a/mods/codermobs/codermobs/animal_materials_overrides.lua +++ b/Bucket_Game-branches/distinguish_meats-vs-211114a/mods/codermobs/codermobs/animal_materials_overrides.lua @@ -5,7 +5,9 @@ -- anywhere else. -- Any meats without a specific cooked version (craftitem) can -- go here, but only use register_mystery_meat if the item would --- look like a leg roast after cooked. +-- look like a leg roast after cooked (or if there is a more +-- specific recipe elsewhere for cooking the craftitem rather +-- than the group, which will override the group's outcome) -- If the cooking mod is not present, more such cooking recipes -- are added as well. @@ -33,9 +35,11 @@ end register_mystery_meat(am_namespace..":meat_lamb") --- register_mystery_meat(am_namespace..":meat_ostrich") --- ^ commented since ostrich.lua registers a specific --- meat & recipe +register_mystery_meat(am_namespace..":meat_ostrich") +-- ^ ok since ostrich.lua registers a specific +-- meat & recipe, and that will override the group +-- recipe and cooking won't result in the generic +-- one. -- if not minetest.get_modpath("cooking") then -- ^ commented for reason below: