From aaa4a9bb7bc7268d54501be12f1d08bf2e245eba Mon Sep 17 00:00:00 2001 From: 1393F <59183821+1393F@users.noreply.github.com> Date: Wed, 22 Apr 2026 16:59:37 -0400 Subject: [PATCH] Fixes mushroom bowl reagent overlay (#95838) ## About The Pull Request Mushroom bowl no longer turns invisible ## Why It's Good For The Game ## Changelog :cl: fix: The mushroom bowl no longer turns invisible when filled with a reagent. /:cl: --- code/modules/mining/lavaland/ash_flora.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/modules/mining/lavaland/ash_flora.dm b/code/modules/mining/lavaland/ash_flora.dm index 9616c6149e5..7f8c16d805e 100644 --- a/code/modules/mining/lavaland/ash_flora.dm +++ b/code/modules/mining/lavaland/ash_flora.dm @@ -414,12 +414,9 @@ name = "mushroom bowl" desc = "A bowl made out of mushrooms. Not food, though it might have contained some at some point." icon = 'icons/obj/mining_zones/ash_flora.dmi' + base_icon_state = "mushroom_bowl" icon_state = "mushroom_bowl" fill_icon_state = "fullbowl" fill_icon = 'icons/obj/mining_zones/ash_flora.dmi' custom_materials = null -/obj/item/reagent_containers/cup/bowl/mushroom_bowl/update_icon_state() - if(!reagents.total_volume) - icon_state = "mushroom_bowl" - return ..()