diff --git a/code/game/objects/items/weapons/handcuffs.dm b/code/game/objects/items/weapons/handcuffs.dm
index 17bb6b84be..0b4700ca6a 100644
--- a/code/game/objects/items/weapons/handcuffs.dm
+++ b/code/game/objects/items/weapons/handcuffs.dm
@@ -25,7 +25,7 @@
return
if ((CLUMSY in user.mutations) && prob(50))
- user << "Uh ... how do those things work?!"
+ to_chat(user, "Uh ... how do those things work?!")
place_handcuffs(user, user)
return
@@ -38,7 +38,7 @@
if(can_place(C, user))
place_handcuffs(C, user)
else
- user << "You need to have a firm grip on [C] before you can put \the [src] on!"
+ to_chat(user, "You need to have a firm grip on [C] before you can put \the [src] on!")
/obj/item/weapon/handcuffs/proc/can_place(var/mob/target, var/mob/user)
if(user == target)
@@ -60,11 +60,11 @@
return 0
if (!H.has_organ_for_slot(slot_handcuffed))
- user << "\The [H] needs at least two wrists before you can cuff them together!"
+ to_chat(user, "\The [H] needs at least two wrists before you can cuff them together!")
return 0
if(istype(H.gloves,/obj/item/clothing/gloves/gauntlets/rig) && !elastic) // Can't cuff someone who's in a deployed hardsuit.
- user << "\The [src] won't fit around \the [H.gloves]!"
+ to_chat(user, "\The [src] won't fit around \the [H.gloves]!")
return 0
user.visible_message("\The [user] is attempting to put [cuff_type] on \the [H]!")
@@ -166,7 +166,7 @@ var/last_chew = 0
if (R.use(1))
var/obj/item/weapon/material/wirerod/W = new(get_turf(user))
user.put_in_hands(W)
- user << "You wrap the cable restraint around the top of the rod."
+ to_chat(user, "You wrap the cable restraint around the top of the rod.")
qdel(src)
update_icon(user)
@@ -188,7 +188,7 @@ var/last_chew = 0
desc = "Use this to keep prisoners in line."
gender = PLURAL
icon = 'icons/obj/items.dmi'
- icon_state = "handcuff"
+ icon_state = "legcuff"
flags = CONDUCT
throwforce = 0
w_class = ITEMSIZE_NORMAL
@@ -204,7 +204,7 @@ var/last_chew = 0
return
if ((CLUMSY in user.mutations) && prob(50))
- user << "Uh ... how do those things work?!"
+ to_chat(user, "Uh ... how do those things work?!")
place_legcuffs(user, user)
return
@@ -217,7 +217,7 @@ var/last_chew = 0
if(can_place(C, user))
place_legcuffs(C, user)
else
- user << "You need to have a firm grip on [C] before you can put \the [src] on!"
+ to_chat(user, "You need to have a firm grip on [C] before you can put \the [src] on!")
/obj/item/weapon/handcuffs/legcuffs/proc/place_legcuffs(var/mob/living/carbon/target, var/mob/user)
playsound(src.loc, cuff_sound, 30, 1, -2)
@@ -227,11 +227,11 @@ var/last_chew = 0
return 0
if (!H.has_organ_for_slot(slot_legcuffed))
- user << "\The [H] needs at least two ankles before you can cuff them together!"
+ to_chat(user, "\The [H] needs at least two ankles before you can cuff them together!")
return 0
if(istype(H.shoes,/obj/item/clothing/shoes/magboots/rig) && !elastic) // Can't cuff someone who's in a deployed hardsuit.
- user << "\The [src] won't fit around \the [H.shoes]!"
+ to_chat(user, "\The [src] won't fit around \the [H.shoes]!")
return 0
user.visible_message("\The [user] is attempting to put [cuff_type] on \the [H]!")
diff --git a/icons/mob/belt.dmi b/icons/mob/belt.dmi
index 7ff90a6741..00e10be77a 100644
Binary files a/icons/mob/belt.dmi and b/icons/mob/belt.dmi differ
diff --git a/icons/mob/belt_mirror.dmi b/icons/mob/belt_mirror.dmi
index eefa872e82..859701435f 100644
Binary files a/icons/mob/belt_mirror.dmi and b/icons/mob/belt_mirror.dmi differ
diff --git a/icons/mob/mob.dmi b/icons/mob/mob.dmi
index 94028db1fa..ec0e70ccdc 100644
Binary files a/icons/mob/mob.dmi and b/icons/mob/mob.dmi differ
diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi
index 563285ff05..e35880d3d4 100644
Binary files a/icons/obj/items.dmi and b/icons/obj/items.dmi differ