Summary
Creating a level-4 paladin via character_manage create returns spellSlots with all levels at 0/0, even though a level-4 paladin should have 3 first-level slots and 2 second-level slots per 5e PHB.
Wizard and cleric created at the same level got their level-1 slots correctly. Wizard also missed level-2 slots.
Reproduction
{ "action": "create", "class": "paladin", "level": 4, "name": "Test", "characterType": "pc" }
Result spellSlots.level1.max == 0. Expected == 3.
Calling cast_spell bless then fails with No level 1+ spell slots available.
Expected
Class-specific spell slot tables applied at character create / level_up. Per PHB:
- Paladin (half-caster): L2: 2/0/0, L3: 3/0/0, L4: 3/0/0, L5: 4/2/0, ...
- Wizard (full caster): L4: 4/3/0/0, L5: 4/3/2/0, ...
- Cleric (full caster): same as wizard.
Acceptance
Summary
Creating a level-4 paladin via
character_manage createreturnsspellSlotswith all levels at0/0, even though a level-4 paladin should have 3 first-level slots and 2 second-level slots per 5e PHB.Wizard and cleric created at the same level got their level-1 slots correctly. Wizard also missed level-2 slots.
Reproduction
{ "action": "create", "class": "paladin", "level": 4, "name": "Test", "characterType": "pc" }Result
spellSlots.level1.max == 0. Expected== 3.Calling
cast_spell blessthen fails withNo level 1+ spell slots available.Expected
Class-specific spell slot tables applied at character create / level_up. Per PHB:
Acceptance