From de7d28cfa8cb8d4408241173068fa982009d3c13 Mon Sep 17 00:00:00 2001 From: raeleus Date: Sun, 22 Sep 2024 23:03:43 -0700 Subject: [PATCH] Fixed the casing of spells. Resolves #3 --- Input.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Input.js b/Input.js index 926f1bf..71b3947 100644 --- a/Input.js +++ b/Input.js @@ -1406,7 +1406,7 @@ function doLearnSpell(command) { character.spells.push(arg0) addStoryCard(arg0, "", "spell") - return `\n${character.name} learned the spell ${arg0}.\n` + return `\n${character.name} learned the spell ${toTitleCase(arg0)}.\n` } function doForgetSpell(command) {