diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm index 468616da212..2bd03158537 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -227,7 +227,10 @@ attack_verb = list("whipped", "lashed", "disciplined", "flogged") suicide_act(mob/user) - viewers(user) << "\red [user] is strangling \himself with the [src.name]! It looks like \he's trying to commit suicide." + if(locate(/obj/structure/stool) in user.loc) + viewers(user) << "\red [user] is making a noose with the [src.name]! It looks like \he's trying to commit suicide." + else + viewers(user) << "\red [user] is strangling \himself with the [src.name]! It looks like \he's trying to commit suicide." return(OXYLOSS) diff --git a/icons/obj/structures.dmi b/icons/obj/structures.dmi index 4e91f6cd615..f28fb421cad 100644 Binary files a/icons/obj/structures.dmi and b/icons/obj/structures.dmi differ