summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
authorCharles Otto <ottochar@gmail.com>2009-10-10 23:07:21 -0400
committerCharles Otto <ottochar@gmail.com>2009-10-10 23:24:00 -0400
commite4f58176388fa16d5f76815af0900a35d9e61627 (patch)
tree44f11ae86e2a30d9389de496933ee92e6b1e6df5 /crawl-ref/source/beam.cc
parentc9a5a4dea4e2dc99e9f50515c71ea71946f003c7 (diff)
downloadcrawl-ref-e4f58176388fa16d5f76815af0900a35d9e61627.tar.gz
crawl-ref-e4f58176388fa16d5f76815af0900a35d9e61627.zip
Patch 2873911 by Jude: add rain clouds
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index 08d0970c60..6cb2bdf408 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -3208,6 +3208,7 @@ void bolt::affect_place_explosion_clouds()
case BEAM_POTION_GREY_SMOKE:
case BEAM_POTION_BLUE_SMOKE:
case BEAM_POTION_PURP_SMOKE:
+ case BEAM_POTION_RAIN:
case BEAM_POTION_MUTAGENIC:
cl_type = beam2cloud(flavour);
break;
@@ -6017,6 +6018,7 @@ std::string beam_type_name(beam_type type)
case BEAM_POTION_GREY_SMOKE: return ("grey smoke");
case BEAM_POTION_BLUE_SMOKE: return ("blue smoke");
case BEAM_POTION_PURP_SMOKE: return ("purple smoke");
+ case BEAM_POTION_RAIN: return ("rain");
case BEAM_POTION_RANDOM: return ("random potion");
case BEAM_POTION_MUTAGENIC: return ("mutagenic fog");
case BEAM_VISUAL: return ("visual effects");