summaryrefslogtreecommitdiff
path: root/src/monster2.cc
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/monster2.cc
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/monster2.cc')
-rw-r--r--src/monster2.cc9
1 files changed, 0 insertions, 9 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;