From fdac137c0c5ab95096eb5bbbf73bd3e9ed8837fd Mon Sep 17 00:00:00 2001 From: Steffen Mecke Date: Mon, 12 Jan 2015 02:35:54 +0100 Subject: [PATCH] magic path warning was wrong way round --- src/spells/regioncurse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spells/regioncurse.c b/src/spells/regioncurse.c index 71138ac2b..0b5b1cdb4 100644 --- a/src/spells/regioncurse.c +++ b/src/spells/regioncurse.c @@ -99,7 +99,7 @@ static message *cinfo_magicstreet(const void *obj, objtype_t typ, const curse * assert(typ == TYP_REGION); /* Warnung vor Auflösung */ - if (c->duration <= 2) { + if (c->duration >= 2) { return msg_message("curseinfo::magicstreet", "id", c->no); } return msg_message("curseinfo::magicstreetwarn", "id", c->no);