Merke: Immer einmal kompilieren.

This commit is contained in:
Christian Schlittchen 2002-02-10 17:57:21 +00:00
parent e996cab019
commit ba3d3e0db6
1 changed files with 3 additions and 1 deletions

View File

@ -2623,7 +2623,7 @@ orc_conversion(void)
if(u->race == new_race[RC_ORC]) {
/* convert to either uruk or snotling */
if(effskill(u, SK_MAGIC) >= 1
|| effskill(u, SK_ALCHEMY) >= 1)
|| effskill(u, SK_ALCHEMY) >= 1
|| get_item(u, I_CHASTITY_BELT) >= u->number) {
u->race = new_race[RC_URUK];
} else {
@ -2632,6 +2632,8 @@ orc_conversion(void)
}
}
}
return 0;
}
#endif