mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 06:29:23 +01:00
[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. 🆑 coiax fix: Tiziran canned goods no longer decompose into mush. /🆑 ## 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 <yellowbounder@gmail.com>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user