mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
Partial fix for #8068.
This commit is contained in:
@@ -350,7 +350,12 @@ Auto Patrol: []"},
|
|||||||
|
|
||||||
if(istype(src.target,/mob/living/carbon))
|
if(istype(src.target,/mob/living/carbon))
|
||||||
var/mob/living/carbon/C = target
|
var/mob/living/carbon/C = target
|
||||||
if(!C.handcuffed && !src.arrest_type)
|
var/wearing_hardsuit
|
||||||
|
if(istype(C,/mob/living/carbon/human))
|
||||||
|
var/mob/living/carbon/human/H = C
|
||||||
|
if(istype(H.back, /obj/item/weapon/rig) && istype(H.gloves,/obj/item/clothing/gloves/rig))
|
||||||
|
wearing_hardsuit = 1
|
||||||
|
if(!wearing_hardsuit && !C.handcuffed && !src.arrest_type)
|
||||||
playsound(src.loc, 'sound/weapons/handcuffs.ogg', 30, 1, -2)
|
playsound(src.loc, 'sound/weapons/handcuffs.ogg', 30, 1, -2)
|
||||||
mode = SECBOT_ARREST
|
mode = SECBOT_ARREST
|
||||||
visible_message("\red <B>[src] is trying to put handcuffs on [src.target]!</B>")
|
visible_message("\red <B>[src] is trying to put handcuffs on [src.target]!</B>")
|
||||||
|
|||||||
@@ -43,7 +43,11 @@
|
|||||||
var/mob/living/carbon/human/H = target
|
var/mob/living/carbon/human/H = target
|
||||||
|
|
||||||
if (!H.has_organ_for_slot(slot_handcuffed))
|
if (!H.has_organ_for_slot(slot_handcuffed))
|
||||||
user << "\red \The [H] needs at least two wrists before you can cuff them together!"
|
user << "<span class='danger'>\The [H] needs at least two wrists before you can cuff them together!</span>"
|
||||||
|
return
|
||||||
|
|
||||||
|
if(istype(H.gloves,/obj/item/clothing/gloves/rig)) // Can't cuff someone who's in a deployed hardsuit.
|
||||||
|
user << "<span class='danger'>The cuffs won't fit around \the [H.gloves]!</span>"
|
||||||
return
|
return
|
||||||
|
|
||||||
H.attack_log += text("\[[time_stamp()]\] <font color='orange'>Has been handcuffed (attempt) by [user.name] ([user.ckey])</font>")
|
H.attack_log += text("\[[time_stamp()]\] <font color='orange'>Has been handcuffed (attempt) by [user.name] ([user.ckey])</font>")
|
||||||
|
|||||||
Reference in New Issue
Block a user