aboutsummaryrefslogtreecommitdiff
path: root/src/spellcasting.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/spellcasting.cc')
-rw-r--r--src/spellcasting.cc2
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()) {