'that was easy' message no longer appears if you are actually fighting a group

This commit is contained in:
Zeno Rogue 2017-10-16 00:25:43 +02:00
parent 9e32cb0254
commit 3a3453da2d
1 changed files with 7 additions and 2 deletions

View File

@ -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)