Skip to content

Commit

Permalink
review 2
Browse files Browse the repository at this point in the history
  • Loading branch information
AndroBetel committed May 28, 2024
1 parent a9a287d commit d03bb8f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions code/modules/clothing/clothing_accessories.dm
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,6 @@
set src in usr

remove_accessory(usr, pick_accessory_to_remove(usr, usr))
if(!LAZYLEN(accessories))
verbs -= /obj/item/clothing/proc/removetie_verb

/obj/item/clothing/proc/pick_accessory_to_remove(mob/user, mob/targetmob)
if(!isliving(user))
Expand Down Expand Up @@ -156,6 +154,9 @@
to_chat(user, SPAN_WARNING("You're too far away!"))
return

if(!LAZYLEN(removables))
verbs -= /obj/item/clothing/proc/removetie_verb

return accessory

/obj/item/clothing/emp_act(severity)
Expand Down

0 comments on commit d03bb8f

Please sign in to comment.