Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulRitter committed Apr 11, 2019
1 parent a916b2b commit d8f55de
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion code/game/machinery/bots/secbot.dm
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,9 @@ Auto Patrol: []"},
/obj/machinery/bot/secbot/proc/assess_perp(mob/living/carbon/human/perp as mob)
var/threatcount = 0 //If threat >= 4 at the end, they get arrested

if(perp.alpha == 0) //perp is invisible, hence innocent
return 0

if(src.emagged == 2)
return PERP_LEVEL_ARREST + rand(PERP_LEVEL_ARREST, PERP_LEVEL_ARREST*5) //Everyone is a criminal!

Expand Down Expand Up @@ -1223,4 +1226,4 @@ Auto Patrol: []"},
S.name = src.created_name
W.forceMove(S)
S.baton = W
qdel(src)
qdel(src)

0 comments on commit d8f55de

Please sign in to comment.