remove spells from prepared list

This commit ensures, that there would be no added spells in case user
does not choose a subclass.
This commit is contained in:
Robert Kubosz
2020-05-12 11:17:56 +02:00
parent cf27b596ef
commit 4b11695d51
+5 -5
View File
@@ -11,11 +11,11 @@ class _SpecialistSpells(Feature):
_name = "Select One"
source = "Artificer"
_spells = {
3: [spells.HealingWord, spells.RayOfSickness],
5: [spells.FlamingSphere, spells.MelfsAcidArrow],
9: [spells.GaseousForm, spells.MassHealingWord],
13: [spells.Blight, spells.DeathWard],
17: [spells.Cloudkill, spells.RaiseDead]
3: [],
5: [],
9: [],
13: [],
17: []
}
spells_known = []
spells_prepared = []