Fixed the casing of spells. Resolves #3

This commit is contained in:
raeleus 2024-09-22 23:03:43 -07:00
parent bb8e75b47f
commit de7d28cfa8

View file

@ -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) {