mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-14 17:45:02 +01:00
Two as anything greps (and some other cleanup) (#92974)
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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>.")
|
||||
|
||||
Reference in New Issue
Block a user