diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm
index 71fe285180..ef6d11a82e 100644
--- a/code/modules/power/cable.dm
+++ b/code/modules/power/cable.dm
@@ -557,7 +557,8 @@ By design, d1 is the smallest direction and d2 is the highest
/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")
+ 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.")
@@ -568,7 +569,6 @@ By design, d1 is the smallest direction and d2 is the highest
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)
if(amount + extra > max_amount)