In Rosthauch min und max verwechselt.

This commit is contained in:
Enno Rehling 2018-09-16 10:10:17 +02:00
parent 65675d1947
commit 552dbe5e72
1 changed files with 1 additions and 1 deletions

View File

@ -299,7 +299,7 @@ int sp_combatrosthauch(struct castorder * co)
for (w = 0; df->weapons[w].type != NULL; ++w) { for (w = 0; df->weapons[w].type != NULL; ++w) {
weapon *wp = df->weapons; weapon *wp = df->weapons;
int n = force; int n = force;
if (n < wp->used) n = wp->used; if (n > wp->used) n = wp->used;
if (n) { if (n) {
requirement *mat = wp->type->itype->construction->materials; requirement *mat = wp->type->itype->construction->materials;
bool iron = false; bool iron = false;