aboutsummaryrefslogtreecommitdiff
path: root/src/weapon.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/weapon.cc')
-rw-r--r--src/weapon.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/weapon.cc b/src/weapon.cc
index db81047..fe50eaf 100644
--- a/src/weapon.cc
+++ b/src/weapon.cc
@@ -130,10 +130,10 @@ namespace entry {
string genText(const Weapon& w, const creature::Creature& c) {
stringstream text;
- text << genText(static_cast<const Item&>(w), c);
+ text << w.getName() << " (" << w.getType() << "): ";
// Determine best ability bonus
int abilityBonus = c.getBonus(creature::getBestAbility(getAbilityOptions(w), c));
- text << ": " << getTextHelper(w, to_string(abilityBonus + c.getProficiency()), to_string(abilityBonus));
+ text << getTextHelper(w, to_string(abilityBonus + c.getProficiency()), to_string(abilityBonus));
return text.str();
}
}