From e74b1c2267024d3b9cba0a3a4ec4a1da1262b8a3 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sat, 28 May 2005 16:08:31 +0000 Subject: [PATCH] =?UTF-8?q?http://eressea.upb.de/mantis/view.php=3Fid=3D27?= =?UTF-8?q?2=20=20Einheiten=20K=C3=A4mpfen=20nicht=20aktiv=20=20-=20Fehler?= =?UTF-8?q?=20in=20dazzle,=20erlaubt=20es=20eine=20Einheit=20mehrfach=20zu?= =?UTF-8?q?=20dazzlen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/kernel/battle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/kernel/battle.c b/src/common/kernel/battle.c index 06b3478ec..47de1c938 100644 --- a/src/common/kernel/battle.c +++ b/src/common/kernel/battle.c @@ -1172,7 +1172,7 @@ terminate(troop dt, troop at, int type, const char *damage, boolean missile) #ifdef TODO_RUNESWORD if (select_weapon(dt, 0, -1) == WP_RUNESWORD) continue; #endif - if (!(df->person[dt.index].flags & FL_COURAGE)) { + if (!(df->person[dt.index].flags & (FL_COURAGE|FL_DAZZLED))) { df->person[dt.index].flags |= FL_DAZZLED; df->person[dt.index].defence--; }