summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/beam.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index bda2e676c1..8a907e8083 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -6159,7 +6159,8 @@ bool bolt::explosion_draw_cell(const coord_def& p)
#endif
#ifndef USE_TILE_LOCAL
cgotoxy(drawpos.x, drawpos.y, GOTO_DNGN);
- put_colour_ch(colour == BLACK ? random_colour() : colour,
+ put_colour_ch(colour == BLACK ? random_colour()
+ : element_colour(colour, false, p),
dchar_glyph(DCHAR_EXPLOSION));
#endif
return true;