bug: potion not taking effect

fixed message in applying potions
This commit is contained in:
2024-07-15 10:17:07 -04:00
parent f9e36fd58b
commit a97e30c8a7

View File

@ -40,7 +40,7 @@ long_result player_base::apply(potion *p) {
apply_effect(p);
return {result::applied,
(std::string)"PC applied potion of " + p->get_name()};
(std::string)"PC applied potion of " + p->get_name() + ". "};
}
long_result player_base::attack(character *ch) {