Two as anything greps (and some other cleanup) (#92974)

This commit is contained in:
MrMelbert
2025-09-20 12:44:28 -05:00
committed by GitHub
parent ae3274238c
commit 750ca9d2ec
86 changed files with 128 additions and 127 deletions
@@ -47,7 +47,7 @@
if(!istype(item, /obj/item/syndicrate_key) || created_items)
return ..()
created_items = TRUE
for(var/item_path as anything in unlock_contents)
for(var/item_path in unlock_contents)
new item_path(src)
unlock_contents = list()
qdel(item)
+2 -2
View File
@@ -45,8 +45,8 @@
var/turf/turfloc = loc
. = ..()
if(isturf(turfloc))
for(var/thing_that_falls as anything in turfloc) // as anything because turfloc can only contain movables
turfloc.zFall((thing_that_falls))
for(var/thing_that_falls in turfloc)
turfloc.zFall(thing_that_falls)
/obj/structure/lattice/proc/deconstruction_hints(mob/user)
return span_notice("The rods look like they could be <b>cut</b>. There's space for more <i>rods</i> or a <i>tile</i>.")