From 5e914948b246590bcd0ebe4a5ffebc9bf2430f08 Mon Sep 17 00:00:00 2001
From: matttheficus <57759731+matttheficus@users.noreply.github.com>
Date: Thu, 28 Sep 2023 19:32:26 -0400
Subject: [PATCH] Logs Toy Cuffs/Twimsts Differently from Standard Cuffs
(#22542)
* god i cant believe we have to do this
* im a silly goose
* K.I.S.S.
* better wording
---
code/game/objects/items/weapons/handcuffs.dm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/code/game/objects/items/weapons/handcuffs.dm b/code/game/objects/items/weapons/handcuffs.dm
index 4a8bec0ef11..b4fb8b648f2 100644
--- a/code/game/objects/items/weapons/handcuffs.dm
+++ b/code/game/objects/items/weapons/handcuffs.dm
@@ -63,8 +63,10 @@
apply_cuffs(C, user, remove_src)
to_chat(user, "You handcuff [C].")
SSblackbox.record_feedback("tally", "handcuffs", 1, type)
-
- add_attack_logs(user, C, "Handcuffed ([src])")
+ if(breakouttime != 0)
+ add_attack_logs(user, C, "Handcuffed ([src])")
+ else
+ add_attack_logs(user, C, "Handcuffed (Fake/Breakable!) ([src])")
else
to_chat(user, "You fail to handcuff [C].")
return FALSE