From 552dbe5e72f6cc6ef8604daf76ad7381816dd343 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 16 Sep 2018 10:10:17 +0200 Subject: [PATCH] In Rosthauch min und max verwechselt. --- src/spells/combatspells.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spells/combatspells.c b/src/spells/combatspells.c index 976c29aed..06a78c4f4 100644 --- a/src/spells/combatspells.c +++ b/src/spells/combatspells.c @@ -299,7 +299,7 @@ int sp_combatrosthauch(struct castorder * co) for (w = 0; df->weapons[w].type != NULL; ++w) { weapon *wp = df->weapons; int n = force; - if (n < wp->used) n = wp->used; + if (n > wp->used) n = wp->used; if (n) { requirement *mat = wp->type->itype->construction->materials; bool iron = false;