Skip to content

Commit

Permalink
Garbage collection? Where we're going, we don't need garbage collecti…
Browse files Browse the repository at this point in the history
  • Loading branch information
amylizzle authored Dec 29, 2023
1 parent 78622b0 commit fc78da8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions code/del.dm
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ proc/qdel(var/datum/D)
for (var/C in D:contents)
qdel(C)

#ifdef OPENDREAM
del(D)
return
#endif

/**
* We'll assume here that the object will be GC'ed.
* If the object is not GC'ed and must be explicitly deleted,
Expand Down

0 comments on commit fc78da8

Please sign in to comment.