Skip to content

Commit

Permalink
Fix runtime on click dragging stacks with disposed item
Browse files Browse the repository at this point in the history
  • Loading branch information
flappybatpal committed Dec 27, 2024
1 parent d82588c commit 854769d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions code/obj/storage/large_storage_parent.dm
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,8 @@ ADMIN_INTERACT_PROCS(/obj/storage, proc/open, proc/close)
for (var/obj/thing in view(1,user))
if(!istype(thing, drag_type))
continue
if (QDELETED(thing))
continue
if (thing.anchored)
continue
if (thing in user)
Expand Down

0 comments on commit 854769d

Please sign in to comment.