From 3a3453da2d3f16e73c965eda47d849ef4149585b Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 16 Oct 2017 00:25:43 +0200 Subject: [PATCH] 'that was easy' message no longer appears if you are actually fighting a group --- game.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/game.cpp b/game.cpp index b7ca7fab..658df675 100644 --- a/game.cpp +++ b/game.cpp @@ -2241,8 +2241,13 @@ bool attackMonster(cell *c, flagtype flags, eMonster killer) { if(tk == 0 && ntk > 0 && !tactic::on && !euclid && !sphere) { if(notthateasy(m)) addMessage(XLAT("Quite tough, for your first fight.")); - else - addMessage(XLAT("That was easy, but groups could be dangerous.")); + else { + bool more = false; + forCellEx(c2, cwt.c) forCellEx(c3, c2) + if(c3->monst) more = true; + if(!more) + addMessage(XLAT("That was easy, but groups could be dangerous.")); + } } if(tk < 10 && ntk >= 10 && !tactic::on && !euclid && !sphere && !inv::on)