summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2017-06-13 18:24:42 +0200
committerBardur Arantsson <bardur@scientician.net>2017-06-13 18:24:42 +0200
commit796f29b346bcad753b2e2b96e4454de0e9adb0cc (patch)
tree8ae85cc11a0a6bbd91bfda51ce3600ee56ffcfcf /src
parentbe427adc0203262e535faba9161c5336e19ffd77 (diff)
Remove ZANGBAND and CTHANGBAND monsters
There was no way to enable them anyway, so we might as well remove them + the code for them.
Diffstat (limited to 'src')
-rw-r--r--src/monster2.cc9
-rw-r--r--src/monster_race_flag_list.hpp2
2 files changed, 0 insertions, 11 deletions
diff --git a/src/monster2.cc b/src/monster2.cc
index 8e866796..56bf0a58 100644
--- a/src/monster2.cc
+++ b/src/monster2.cc
@@ -1024,15 +1024,6 @@ s16b get_mon_num(int level)
continue;
}
- if(in_tome)
- {
- /* Zangbandish monsters not allowed */
- if (r_ptr->flags & RF_ZANGBAND) continue;
-
- /* Lovecraftian monsters not allowed */
- if (r_ptr->flags & RF_CTHANGBAND) continue;
- }
-
/* Joke monsters allowed ? or not ? */
if (!options->joke_monsters && (r_ptr->flags & RF_JOKEANGBAND)) continue;
diff --git a/src/monster_race_flag_list.hpp b/src/monster_race_flag_list.hpp
index 10a36a3f..5179a040 100644
--- a/src/monster_race_flag_list.hpp
+++ b/src/monster_race_flag_list.hpp
@@ -136,8 +136,6 @@ RF(5, 8, XXX8X08)
RF(5, 9, WILD_MOUNTAIN)
RF(5, 10, WILD_GRASS)
RF(5, 11, NO_CUT)
-RF(5, 12, CTHANGBAND)
-RF(5, 14, ZANGBAND)
RF(5, 15, JOKEANGBAND)
RF(5, 16, BASEANGBAND)
RF(5, 31, WILD_TOO)