diff options
author | Bardur Arantsson <bardur@scientician.net> | 2016-06-20 22:49:05 +0200 |
---|---|---|
committer | Bardur Arantsson <bardur@scientician.net> | 2016-06-20 22:49:05 +0200 |
commit | fc41a7d28d8896da79963d23ed1afba408e27470 (patch) | |
tree | 3e4e4d798605565ca58fb698cc03a5e218ac51f8 /src | |
parent | fc2af69bd5c33cde0f340cfb9f2707765ce68029 (diff) |
Remove unused special-casing of RF8_WILD_TOO in init1.cc
Diffstat (limited to 'src')
-rw-r--r-- | src/init1.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/init1.cc b/src/init1.cc index 290091dc..9b76b8f8 100644 --- a/src/init1.cc +++ b/src/init1.cc @@ -5726,10 +5726,6 @@ errr init_r_info_txt(FILE *fp) { /* Invert flag WILD_ONLY <-> RF8_DUNGEON */ r_info[i].flags8 ^= 1L; - - /* WILD_TOO without any other wilderness flags enables all flags */ - if ((r_info[i].flags8 & RF8_WILD_TOO) && !(r_info[i].flags8 & 0x7FFFFFFE)) - r_info[i].flags8 = 0x0463; } /* Success */ |