From d2f242122d43da06ab17e4e86c778173d313ba64 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 20 Jan 2002 12:26:48 +0000 Subject: [PATCH] =?UTF-8?q?duh.=20undo=20der=20=C3=A4nderung=20in=20korrek?= =?UTF-8?q?tur?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/eressea/korrektur.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/eressea/korrektur.c b/src/eressea/korrektur.c index 26200a65d..6b13f90c4 100644 --- a/src/eressea/korrektur.c +++ b/src/eressea/korrektur.c @@ -2760,10 +2760,10 @@ heal_all(void) for(r=regions; r; r=r->next) { for(u=r->units;u;u=u->next) { int max_hp = unit_max_hp(u) * u->number; -/* if(u->hp < max_hp) { */ + if(u->hp < max_hp) { u->hp = max_hp; fset(u->faction, FL_DH); -/* } */ + } } }