From b967268c90ddea548e3ccd49861415822a1513f3 Mon Sep 17 00:00:00 2001 From: Alan Date: Tue, 2 Dec 2025 13:57:40 -0500 Subject: [PATCH] Prevent base type citrus in chef fridge. (#31170) * Prevent base type citrus in chef fridge. * ... And make sure limes pass linters. --- code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm | 1 + code/modules/hydroponics/grown/citrus.dm | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm b/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm index 8358c63840f..651d9297fe4 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm @@ -513,6 +513,7 @@ /obj/item/food/grown/mushroom/fungus, /obj/item/food/grown/mushroom, /obj/item/food/grown/ash_flora, + /obj/item/food/grown/citrus ) var/list/output = list() for(var/I in 1 to 3) diff --git a/code/modules/hydroponics/grown/citrus.dm b/code/modules/hydroponics/grown/citrus.dm index 6ba3c838879..d6064d70db9 100644 --- a/code/modules/hydroponics/grown/citrus.dm +++ b/code/modules/hydroponics/grown/citrus.dm @@ -2,7 +2,7 @@ /obj/item/food/grown/citrus seed = /obj/item/seeds/lime name = "citrus" - desc = "It's so sour, your face will twist." + desc = ABSTRACT_TYPE_DESC icon_state = "lime" bitesize_mod = 2 wine_power = 0.3 @@ -26,6 +26,7 @@ /obj/item/food/grown/citrus/lime name = "lime" + desc = "It's so sour, your face will twist." filling_color = "#00FF00" tastes = list("lime" = 1)