From e80594d34a1968c95eaa64d25c67ee49452f0011 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Sun, 3 Nov 2024 08:16:27 -0500 Subject: [PATCH] fix: update random plant menu icon (#27252) --- code/game/objects/structures/flora.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm index e6921569f7b..09cf587e2e8 100644 --- a/code/game/objects/structures/flora.dm +++ b/code/game/objects/structures/flora.dm @@ -271,6 +271,7 @@ icon_state = "plant-eye" if(icon_state == "random_plant") icon_state = "plant-[rand(1, 34)]" + update_appearance(UPDATE_ICON_STATE) AddComponent(/datum/component/two_handed, require_twohands = TRUE) /obj/item/kirbyplants/Destroy()