diff --git a/database/spell-dp.py b/database/spell-dp.py index 7e6bdca..3fe4dc3 100644 --- a/database/spell-dp.py +++ b/database/spell-dp.py @@ -41,7 +41,7 @@ def insertSpells(): duration = spell.get('duration') saving_throw = spell.get('saving_throw') spell_resistance = spell.get('spell_resistance') - description = '\n'.join(spell.get('description', [])) + description = spell.get('description') components = spell.get('components') area = spell.get('area') effect = spell.get('effect') diff --git a/outputs/spells.db b/outputs/spells.db index d726c4b..01fcc17 100644 Binary files a/outputs/spells.db and b/outputs/spells.db differ