fix merge error

This commit is contained in:
Enno Rehling 2019-02-03 04:17:11 +01:00
parent 818b309ebf
commit e2607a3e7c

View file

@ -600,7 +600,7 @@ weapon_skill(const weapon_type * wtype, const unit * u, bool attacking)
/* wenn kein waffenloser kampf, dann den rassen-defaultwert */
if (rc == get_race(RC_ORC)) {
int sword = effskill(u, SK_MELEE, NULL);
int spear = effskill(u, SK_SPEAR,NULL0);
int spear = effskill(u, SK_SPEAR, NULL);
skill = ((sword > spear) ? sword : spear) - 3;
}
}