summaryrefslogtreecommitdiff
path: root/src/object2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/object2.c')
-rw-r--r--src/object2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/object2.c b/src/object2.c
index f2619787..625e1ecd 100644
--- a/src/object2.c
+++ b/src/object2.c
@@ -2244,7 +2244,7 @@ static bool_ make_artifact_special(object_type *o_ptr)
if (!(a_ptr->flags3 & TR3_INSTA_ART)) continue;
/* Cannot generate some artifacts because they can only exists in special dungeons/quests/... */
- if ((a_ptr->flags4 & TR4_SPECIAL_GENE) && (!a_allow_special[i]) && (!vanilla_town)) continue;
+ if ((a_ptr->flags4 & TR4_SPECIAL_GENE) && (!a_allow_special[i])) continue;
/* XXX XXX Enforce minimum "depth" (loosely) */
if (a_ptr->level > dun_level)
@@ -2331,7 +2331,7 @@ static bool_ make_artifact(object_type *o_ptr)
if (a_ptr->flags3 & TR3_INSTA_ART) continue;
/* Cannot generate some artifacts because they can only exists in special dungeons/quests/... */
- if ((a_ptr->flags4 & TR4_SPECIAL_GENE) && (!a_allow_special[i]) && (!vanilla_town)) continue;
+ if ((a_ptr->flags4 & TR4_SPECIAL_GENE) && (!a_allow_special[i])) continue;
/* Must have the correct fields */
if (a_ptr->tval != o_ptr->tval) continue;