From 32a5bc31bbeaadbaad5bb6145b40735f708efa5c Mon Sep 17 00:00:00 2001 From: "Eevee (Evelyn Woods)" Date: Sat, 16 Jan 2021 20:56:16 -0700 Subject: [PATCH] Fix dynamite leaving fire under actors beneath canopies (fixes #27) --- js/tiletypes.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/tiletypes.js b/js/tiletypes.js index 2fad042..0905073 100644 --- a/js/tiletypes.js +++ b/js/tiletypes.js @@ -2346,6 +2346,8 @@ const TILE_TYPES = { if (tile.type.name === 'canopy') { // Canopy protects everything else + actor = null; + terrain = null; break; } }