From a18889baa46309daa2e64c5ff0c5e1e760341f7e Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 14 Feb 2023 01:23:59 +0100 Subject: [PATCH] [MIRROR] Fix Tiziran canned goods from being eaten by ants [MDB IGNORE] (#19327) * Fix Tiziran canned goods from being eaten by ants (#73401) Because these canned goods didn't inherit from /obj/item/food/canned, they didn't inherit the imperishable nature. Ideally in the future, they'll inherit properly from that, but they'll need trash and open sprites to make that happen. Until then, let's just make the goods non-perishable. :cl: coiax fix: Tiziran canned goods no longer decompose into mush. /:cl: ## Why It's Good For The Game Inconsistent that canned goods would turn to mush if left on the ground. Doesn't happen to other (non-opened) canned goods. * Fix Tiziran canned goods from being eaten by ants --------- Co-authored-by: Jack Edge --- code/game/objects/items/food/lizard.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/objects/items/food/lizard.dm b/code/game/objects/items/food/lizard.dm index 74528afd341..49e181bd9d5 100644 --- a/code/game/objects/items/food/lizard.dm +++ b/code/game/objects/items/food/lizard.dm @@ -805,6 +805,7 @@ tastes = list("slime" = 1, "burning" = 1, "salt" = 1) foodtypes = SEAFOOD | GORE w_class = WEIGHT_CLASS_SMALL + preserved_food = TRUE /obj/item/food/desert_snails name = "canned desert snails" @@ -818,6 +819,7 @@ tastes = list("snails" = 1) foodtypes = MEAT | GORE w_class = WEIGHT_CLASS_SMALL + preserved_food = TRUE /obj/item/food/larvae name = "canned bee larva" @@ -831,3 +833,4 @@ tastes = list("sweet bugs" = 1) foodtypes = MEAT | GORE | BUGS w_class = WEIGHT_CLASS_SMALL + preserved_food = TRUE