Fixed incorrect text when clearing spells.

This commit is contained in:
raeleus 2024-10-10 22:20:34 -07:00
parent 9cb476e1ed
commit d8861836d1
2 changed files with 4 additions and 1 deletions

View file

@ -2802,7 +2802,7 @@ function doGenerateName(command) {
function doClearSpells(command) {
var character = getCharacter()
character.spells = []
state.show = "clearInventory"
state.show = "clearSpells"
return " "
}