fixed issue with potions not angering merchants

This commit is contained in:
2024-07-20 13:58:28 -04:00
parent af1522ba2f
commit 2e4ccf74c7

View File

@ -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. ";
}