summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/spells1.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index c5a7ca9478..b8228175fa 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -563,12 +563,13 @@ bool conjure_flame(int pow)
bool stinking_cloud( int pow, bolt &beem )
{
- beem.name = "ball of vapour";
+ beem.name = "stinking cloud";
beem.colour = GREEN;
beem.range = 6;
beem.damage = dice_def( 1, 0 );
beem.hit = 20;
beem.type = dchar_glyph(DCHAR_FIRED_ZAP);
+ beem.flavour = BEAM_POTION_STINKING_CLOUD;
beem.ench_power = pow;
beem.beam_source = MHITYOU;
beem.thrower = KILL_YOU;
@@ -584,7 +585,6 @@ bool stinking_cloud( int pow, bolt &beem )
beem.smart_monster = true;
beem.attitude = ATT_FRIENDLY;
beem.fr_count = 0;
- beem.flavour = BEAM_POTION_STINKING_CLOUD;
beem.is_tracer = true;
beem.fire();
@@ -597,7 +597,6 @@ bool stinking_cloud( int pow, bolt &beem )
}
// Really fire.
- beem.flavour = BEAM_MMISSILE;
beem.is_tracer = false;
beem.fire();