From f1ac3a29051d04dd74ffb4d29aa54c79790a0e1f Mon Sep 17 00:00:00 2001 From: raeleus Date: Thu, 26 Sep 2024 07:55:46 -0700 Subject: [PATCH] Resolves #9 --- Input.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Input.js b/Input.js index 67686a2..a6c2b5b 100644 --- a/Input.js +++ b/Input.js @@ -1471,6 +1471,7 @@ function doForgetSpell(command) { var index = character.spells.findIndex(x => x.toLowerCase() == arg0.toLowerCase()) character.spells.splice(index, 1) + state.show = "none" return `\n[${character.name} forgot the spell ${arg0}]\n` }