diff options
author | Your Name <you@example.com> | 2021-04-20 12:40:37 -0400 |
---|---|---|
committer | Your Name <you@example.com> | 2021-04-20 12:40:37 -0400 |
commit | cd57ad6e208728bafcbc8c7d7b85d88603706978 (patch) | |
tree | 7cb0fc9511a0e8124e497d53edbe38d646dd8299 /src/spellcasting.cc | |
parent | 2cae1aa33f80ce0844fb54a84ce103146a7fe7ad (diff) | |
download | dmtool-cd57ad6e208728bafcbc8c7d7b85d88603706978.tar.gz dmtool-cd57ad6e208728bafcbc8c7d7b85d88603706978.tar.bz2 dmtool-cd57ad6e208728bafcbc8c7d7b85d88603706978.zip |
Updated natural armor and skills
Diffstat (limited to 'src/spellcasting.cc')
-rw-r--r-- | src/spellcasting.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spellcasting.cc b/src/spellcasting.cc index 62af6de..e36fd5b 100644 --- a/src/spellcasting.cc +++ b/src/spellcasting.cc @@ -33,7 +33,7 @@ namespace entry { string genText(const Spellcasting& s, const creature::Creature& c) { stringstream text; text << genText(static_cast<const Feature&>(s), c); - text << ": Spellcasting ability: " << s.getAbility(); + text << ": Spellcasting ability: " << s.getAbility().getFull(); text << " (spell save DC " << 8 + c.getBonus(s.getAbility()) + c.getProficiency(); text << ", +" << c.getBonus(s.getAbility()) + c.getProficiency() << " to hit with spell attacks)."; if(s.isInnate()) { |