[MIRROR] Crates Handle Directional Lights Better (#11458)

Co-authored-by: Will <7099514+Willburd@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-08-18 01:52:17 -07:00
committed by GitHub
parent a560fa0a0d
commit dec222e0bf
2 changed files with 3 additions and 1 deletions

View File

@@ -58,7 +58,7 @@
for(var/obj/O in get_turf(src))
if(itemcount >= storage_capacity)
break
if(O.density || O.anchored || istype(O,/obj/structure/closet))
if(O.density || O.anchored || istype(O,/obj/structure/closet) || istype(O,/obj/effect/abstract))
continue
if(istype(O, /obj/structure/bed)) //This is only necessary because of rollerbeds and swivel chairs.
var/obj/structure/bed/B = O