From a97e30c8a7599aba43fe2165bf4808ae7a1a8e12 Mon Sep 17 00:00:00 2001 From: Peisong Xiao Date: Mon, 15 Jul 2024 10:17:07 -0400 Subject: [PATCH] bug: potion not taking effect fixed message in applying potions --- src/player.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/player.cc b/src/player.cc index f09a12b..afaff69 100644 --- a/src/player.cc +++ b/src/player.cc @@ -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) {