Merge pull request #13935 from Citadel-Station-13/silicons-patch-58
fixes a bug
This commit is contained in:
@@ -148,8 +148,8 @@ proc/get_top_level_mob(var/mob/S)
|
||||
var/safety = 25
|
||||
for(var/obj/structure/table/T in range(user, 1))
|
||||
processing |= T
|
||||
for(var/i in processing)
|
||||
var/obj/structure/table/T = i
|
||||
for(var/i = 1; i <= processing.len; ++i)
|
||||
var/obj/structure/table/T = processing[i]
|
||||
if(safety-- <= 0)
|
||||
to_chat(user, "Table scan aborted early, some people might have not received the message (max 25)")
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user