From 24eb2308b38c5ffb79ca7c38e8b9c2bd1d468c52 Mon Sep 17 00:00:00 2001 From: Enric Gabriel <43283559+SandPoot@users.noreply.github.com> Date: Wed, 12 Aug 2020 11:40:12 -0300 Subject: [PATCH] just this little thing so nothing goes wrong later --- sandcode/code/modules/mob/living/carbon/show.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sandcode/code/modules/mob/living/carbon/show.dm b/sandcode/code/modules/mob/living/carbon/show.dm index 0a05154bda..edd752ed8a 100644 --- a/sandcode/code/modules/mob/living/carbon/show.dm +++ b/sandcode/code/modules/mob/living/carbon/show.dm @@ -12,7 +12,9 @@ /mob/living/carbon/proc/showoff() var/obj/item/I = get_active_held_item() var/obj/item/arm = get_active_hand() - if(!I) + if(!I && arm) usr.show_message("[usr] holds up [arm].", 1) + else if(!arm && !I) + to_chat(usr, "You frown because now there's nothing you can show.") else if(!HAS_TRAIT(I, ABSTRACT_ITEM_TRAIT)) I.showoff(src)