From afe68e1b2010aeb35f10d841848a430656eabf7d Mon Sep 17 00:00:00 2001 From: "Eevee (Evelyn Woods)" Date: Thu, 24 Dec 2020 07:57:18 -0700 Subject: [PATCH] Fix fire to not kill ghosts, again --- js/tiletypes.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/tiletypes.js b/js/tiletypes.js index 5631017..4c5cac5 100644 --- a/js/tiletypes.js +++ b/js/tiletypes.js @@ -610,6 +610,9 @@ const TILE_TYPES = { level.transmute_tile(other, 'explosion'); level.transmute_tile(me, 'water'); } + else if (other.type.name === 'ghost') { + return; + } else if (other.type.is_real_player) { level.fail('burned'); }