From f254b72e1d1522437b4b91c469b8d05813aa389e Mon Sep 17 00:00:00 2001 From: alexkar598 <25136265+alexkar598@users.noreply.github.com> Date: Fri, 10 Apr 2020 20:17:40 -0400 Subject: [PATCH] Fixes the occasional runtime in turdis --- code/datums/explosion.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/explosion.dm b/code/datums/explosion.dm index cdfe4778a149..0885a3262147 100644 --- a/code/datums/explosion.dm +++ b/code/datums/explosion.dm @@ -159,7 +159,7 @@ GLOBAL_LIST_EMPTY(explosions) var/list/affected_turfs = GatherSpiralTurfs(max_range, epicenter) var/reactionary = CONFIG_GET(flag/reactionary_explosions) - var/list/cached_exp_block + var/list/cached_exp_block = list() if(reactionary) cached_exp_block = CaculateExplosionBlock(affected_turfs)