diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm
index ef6d11a82e..49848824e4 100644
--- a/code/modules/power/cable.dm
+++ b/code/modules/power/cable.dm
@@ -556,18 +556,18 @@ By design, d1 is the smallest direction and d2 is the highest
new_cable.update_icon()
/obj/item/stack/cable_coil/attack_self(mob/user)
- if(!use(15))
- to_chat(user, "You dont have enough cable coil to make restraints out of them")
- return
- to_chat(user, "You start making some cable restraints.")
- if(!do_after(user, 30, TRUE, user, TRUE))
- to_chat(user, "You fail to make cable restraints, you need to stand still while doing so.")
- give(15)
- return
- var/obj/item/restraints/handcuffs/cable/result = new(get_turf(user))
- user.put_in_hands(result)
- result.color = color
- to_chat(user, "You make some restraints out of cable")
+ if(!use(15))
+ to_chat(user, "You dont have enough cable coil to make restraints out of them")
+ return
+ to_chat(user, "You start making some cable restraints.")
+ if(!do_after(user, 30, TRUE, user, TRUE))
+ to_chat(user, "You fail to make cable restraints, you need to stand still while doing so.")
+ give(15)
+ return
+ var/obj/item/restraints/handcuffs/cable/result = new(get_turf(user))
+ user.put_in_hands(result)
+ result.color = color
+ to_chat(user, "You make some restraints out of cable")
//add cables to the stack
/obj/item/stack/cable_coil/proc/give(extra)