1
0

Create wands

This commit is contained in:
2024-01-15 13:22:19 +01:00
parent 0c7ae19d40
commit b24ea5b610
2 changed files with 70 additions and 1 deletions

View File

@ -92,7 +92,7 @@ spell_none = Spell(__INVALID_SPELL, 0, 0, 0, "(internal) invalid spell", SPELL_T
##
## Standalone spell functions
##
def find_spell_by_name(input):
def find_spell_by_name(input: str):
for i in Spell.spellList:
if input.title() == i.name.title():
return i