From 2f38918498cecbf80ee3f4767e72c1f2d33d18fb Mon Sep 17 00:00:00 2001 From: Emmett Gaines Date: Thu, 23 Aug 2018 04:20:38 -0400 Subject: [PATCH] Make radiation waves return QDEL_HINT_IWILLGC (#39851) None of their functionality depends on being referenced by anything so the only possible issue is if some future coder fucks it up --- code/datums/radiation_wave.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/datums/radiation_wave.dm b/code/datums/radiation_wave.dm index 1240fc965de..6fa1e2a4765 100644 --- a/code/datums/radiation_wave.dm +++ b/code/datums/radiation_wave.dm @@ -24,8 +24,9 @@ START_PROCESSING(SSradiation, src) /datum/radiation_wave/Destroy() + . = QDEL_HINT_IWILLGC STOP_PROCESSING(SSradiation, src) - return ..() + ..() /datum/radiation_wave/process() master_turf = get_step(master_turf, move_dir)