Merge branch 'upstream-master' into upstream-development

This commit is contained in:
Werner
2018-11-04 13:49:40 +01:00
25 changed files with 137 additions and 27 deletions
+2 -2
View File
@@ -63,8 +63,8 @@
//mobs in range check
var/users_in_range = 0
for(var/mob/living/L in orange(1,src))
if(L.ckey && L.client)
if((world.time - L.client.inactivity) < (world.time - 300) || L.stat != CONSCIOUS || L.restrained())
if(L.ckey)
if(L.stat != CONSCIOUS || L.restrained())
to_chat(M, "<span class='warning'>\The [L] does not seem to be paying attention to the [src].</span>")
else
users_in_range++