Add space between weapon specials in list

This commit is contained in:
Charles Dang 2016-07-29 17:43:51 +11:00
parent 4c259e4a1d
commit 32e1d2ba45

View file

@ -657,7 +657,7 @@ std::string attack_type::weapon_specials(bool only_active, bool is_backstab) con
std::string const &name = sp.cfg["name"].str();
if (!name.empty()) {
if (!res.empty()) res += ',';
if (!res.empty()) res += ", ";
res += name;
}
}