Iron golems can now create dwarfen only items

(makes irongolems usable for dwarfs)
This commit is contained in:
TomBraun 2014-06-25 13:24:06 +02:00
parent 0400bcafad
commit d4fdddbc27
1 changed files with 1 additions and 1 deletions

View File

@ -753,7 +753,7 @@ mod_elves_only(const unit * u, const region * r, skill_t sk, int value)
static int
mod_dwarves_only(const unit * u, const region * r, skill_t sk, int value)
{
if (u_race(u) == new_race[RC_DWARF])
if (u_race(u) == new_race[RC_DWARF] || (u_race(u)->flags & RCF_IRONGOLEM))
return value;
unused_arg(r);
return -118;