just this little thing so nothing goes wrong later

This commit is contained in:
Enric Gabriel
2020-08-12 11:40:12 -03:00
parent 3fbf8d71f4
commit 24eb2308b3
@@ -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, "<span class='notice'>You frown because now there's nothing you can show.</span>")
else if(!HAS_TRAIT(I, ABSTRACT_ITEM_TRAIT))
I.showoff(src)