From 2ef3e3a07c0421355855ac8bde45de16d8284d8c Mon Sep 17 00:00:00 2001 From: Gatchapod <20936555+Gatchapod@users.noreply.github.com> Date: Sun, 28 Mar 2021 13:42:50 +0200 Subject: [PATCH] Fixes one-handed plant-people (#15532) * Removes one-handed plant-people * Unbreaking things * Going too fast for my own good * Alright, this time I actually checked all * Let's just remove all unrelated changes * mochi's suggestions Co-authored-by: Gatchapod --- code/game/objects/structures/flora.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/flora.dm b/code/game/objects/structures/flora.dm index 0323a9fc0cf..3679587d654 100644 --- a/code/game/objects/structures/flora.dm +++ b/code/game/objects/structures/flora.dm @@ -223,9 +223,10 @@ /obj/item/twohanded/required/kirbyplants/equipped(mob/living/user) . = ..() - var/image/I = image(icon = 'icons/obj/flora/plants.dmi' , icon_state = src.icon_state, loc = user) - I.override = 1 - user.add_alt_appearance("sneaking_mission", I, GLOB.player_list) + if(wielded) + var/image/I = image(icon, user, icon_state) + I.override = TRUE + user.add_alt_appearance("sneaking_mission", I, GLOB.player_list) /obj/item/twohanded/required/kirbyplants/dropped(mob/living/user) ..()