From 2c6695ba12ea680c64482536bd57f3f4a47b492b Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 13 Aug 2020 16:04:47 -0400 Subject: [PATCH] Fix healing not un-destroying the player --- src/game/maps/town.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game/maps/town.ts b/src/game/maps/town.ts index 01df436..e3af450 100644 --- a/src/game/maps/town.ts +++ b/src/game/maps/town.ts @@ -219,6 +219,7 @@ export const Town = (): Place => { executor.statusEffects.forEach(effect => { executor.removeEffect(effect) }) + executor.destroyed = false return new LogLine(`You're healthy again`) } )