summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monplace.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monplace.cc')
-rw-r--r--crawl-ref/source/monplace.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc
index f2197a952d..4fbb8095cf 100644
--- a/crawl-ref/source/monplace.cc
+++ b/crawl-ref/source/monplace.cc
@@ -763,6 +763,11 @@ static int _place_monster_aux( const mgen_data &mg,
else
define_monster(id);
+ // If the caller requested a specific colour for this monster,
+ // apply it now.
+ if (mg.colour != BLACK)
+ menv[id].colour = mg.colour;
+
// The return of Boris is now handled in monster_die()...
// not setting this for Boris here allows for multiple Borises
// in the dungeon at the same time. -- bwr