From 2e4ccf74c7afb06f9604af66f22988be322624f7 Mon Sep 17 00:00:00 2001 From: Peisong Xiao Date: Sat, 20 Jul 2024 13:58:28 -0400 Subject: [PATCH] fixed issue with potions not angering merchants --- src/game.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.cc b/src/game.cc index e9b78b4..5ffb547 100644 --- a/src/game.cc +++ b/src/game.cc @@ -101,7 +101,7 @@ game_result game::run() { in->get_command()); msg = res.msg; - if (!hostile_merchants && res.msg.find(" M ") != std::string::npos) { + if (!hostile_merchants && res.msg.find(" M") != std::string::npos) { hostile_merchants = true; msg += "PC has angered the merchants. "; }