fixed bugs about throwing, added anger msg for merchants

This commit is contained in:
2024-07-17 22:14:37 -04:00
parent 1db7e95649
commit 242c1fff65
3 changed files with 7 additions and 4 deletions

View File

@ -92,8 +92,10 @@ game_result game::run() {
in->get_command());
msg = res.msg;
if (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. ";
}
switch (res.res) {
case result::terminate: