From 6460e6ade0acbb0689df8358c483c0035b2eb1de Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Mon, 14 Jun 2004 22:03:52 +0000 Subject: [PATCH] =?UTF-8?q?Keine=20persistenten=20Befehle=20f=C3=BCr=20Mos?= =?UTF-8?q?nter=20speichern=20(nur=20zur=20Sicherheit)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/kernel/save.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/kernel/save.c b/src/common/kernel/save.c index 5a501117a..e1a22c7a1 100644 --- a/src/common/kernel/save.c +++ b/src/common/kernel/save.c @@ -1217,7 +1217,7 @@ writeunit(FILE * F, const unit * u) else wi36(F, 0); wi(F, u->status); wi(F, u->flags & UFL_SAVEMASK); - for(S=u->orders; S; S=S->next) { + if (u->faction->no!=MONSTER_FACTION) for(S=u->orders; S; S=S->next) { if (is_persistent(S->s, u->faction->locale)) { ws(F, S->s); }