Skip to content

Commit

Permalink
bugfix: Fixed compilation issues with testing flag enabled (#5267)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladisvell authored Jun 22, 2024
1 parent a84407f commit b7eeaa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/controllers/subsystem/garbage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ SUBSYSTEM_DEF(garbage)
// indicates the objects Destroy() does not respect force
#ifdef TESTING
if(!trash.no_respect_force)
testing("WARNING: [D.type] has been force deleted, but is \
testing("WARNING: [to_delete.type] has been force deleted, but is \
returning an immortal QDEL_HINT, indicating it does \
not respect the force flag for qdel(). It has been \
placed in the queue, further instances of this type \
Expand All @@ -361,7 +361,7 @@ SUBSYSTEM_DEF(garbage)
else
#ifdef REFERENCE_TRACKING
if(!trash.no_hint)
log_gc("WARNING: [D.type] is not returning a qdel hint. It is being placed in the queue. Further instances of this type will also be queued.")
log_gc("WARNING: [to_delete.type] is not returning a qdel hint. It is being placed in the queue. Further instances of this type will also be queued.")
#endif
trash.no_hint++
SSgarbage.Queue(to_delete)
Expand Down

0 comments on commit b7eeaa7

Please sign in to comment.