summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/dungeon.cc')
-rw-r--r--crawl-ref/source/dungeon.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index fcbcf9fb82..ece327f7b3 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -3354,19 +3354,19 @@ static monster_type _choose_unique_by_depth(int step)
ret = random_choose(MONS_URUG, MONS_MICHAEL, MONS_EUSTACHIO, MONS_SONJA,
MONS_SNORG, MONS_ERICA, MONS_JOSEPHINE, MONS_HAROLD,
MONS_ROXANNE, MONS_RUPERT, MONS_NORBERT, MONS_JOZEF,
- MONS_AZRAEL, MONS_NESSOS, MONS_AGNES,
+ MONS_AZRAEL, MONS_NESSOS, MONS_AGNES, MONS_NIKOLA,
MONS_MAUD, MONS_LOUISE, MONS_NERGALLE, MONS_KIRKE, -1);
break;
case 5: // depth <= 19
ret = random_choose(MONS_SNORG, MONS_LOUISE, MONS_FRANCIS, MONS_FRANCES,
MONS_RUPERT, MONS_WAYNE, MONS_DUANE, MONS_NORRIS,
- MONS_AZRAEL, MONS_NESSOS, MONS_NERGALLE,
+ MONS_AZRAEL, MONS_NESSOS, MONS_NERGALLE, MONS_NIKOLA,
MONS_ROXANNE, MONS_SAINT_ROKA, MONS_KIRKE, -1);
break;
case 6: // depth > 19
default:
ret = random_choose(MONS_FRANCIS, MONS_FRANCES, MONS_WAYNE, MONS_DUANE,
- MONS_XTAHUA, MONS_NORRIS, MONS_FREDERICK,
+ MONS_XTAHUA, MONS_NORRIS, MONS_FREDERICK, MONS_NIKOLA,
MONS_MARGERY, MONS_BORIS, MONS_SAINT_ROKA, -1);
}