Makes beepsky less brutal

Fixes #10979
Fixes beepsky beating up handcuffed people
This commit is contained in:
Kelenius
2015-09-08 11:36:55 +03:00
parent 4ac350cbbf
commit 388159c7f1
2 changed files with 7 additions and 0 deletions

View File

@@ -622,6 +622,12 @@ proc/is_blind(A)
return 0
/mob/living/carbon/assess_perp(var/obj/access_obj, var/check_access, var/auth_weapons, var/check_records, var/check_arrest)
if(handcuffed)
return SAFE_PERP
return ..()
/mob/living/carbon/human/assess_perp(var/obj/access_obj, var/check_access, var/auth_weapons, var/check_records, var/check_arrest)
var/threatcount = ..()
if(. == SAFE_PERP)