X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=src%2Finit1.c;h=306248e7cea74c11725d9c14d5a5af71825ba448;hb=a3a421d67e9ce00712a478fdf81877bba0a26ae5;hp=e4ed43836e0447723e5fa3a0629f7c426d79e113;hpb=b59af137df14e3d433f8228ebe9aea8034dd66b8;p=hengband%2Fhengband.git diff --git a/src/init1.c b/src/init1.c index e4ed43836..306248e7c 100644 --- a/src/init1.c +++ b/src/init1.c @@ -3339,7 +3339,7 @@ static errr process_dungeon_file_aux(char *buf, int ymin, int xmin, int ymax, in */ if (randint0(100) < 75) { - place_object(*y, *x, AM_OKAY); + place_object(*y, *x, 0L); } else { @@ -3354,11 +3354,11 @@ static errr process_dungeon_file_aux(char *buf, int ymin, int xmin, int ymax, in /* Create an out of deep object */ if (randint0(100) < 75) - place_object(*y, *x, AM_OKAY); + place_object(*y, *x, 0L); else if (randint0(100) < 80) - place_object(*y, *x, AM_OKAY | AM_GOOD); + place_object(*y, *x, AM_GOOD); else - place_object(*y, *x, AM_OKAY | AM_GOOD | AM_GREAT); + place_object(*y, *x, AM_GOOD | AM_GREAT); object_level = base_level; } @@ -3389,7 +3389,7 @@ static errr process_dungeon_file_aux(char *buf, int ymin, int xmin, int ymax, in } /* Apply magic (no messages, no artifacts) */ - apply_magic(o_ptr, base_level, AM_GOOD); + apply_magic(o_ptr, base_level, AM_NO_FIXED_ART | AM_GOOD); (void)drop_near(o_ptr, -1, *y, *x); }