summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/item_use.cc
diff options
context:
space:
mode:
authorStefan O'Rear <stefanor@cox.net>2009-11-06 11:55:38 -0800
committerStefan O'Rear <stefanor@cox.net>2009-11-06 11:56:57 -0800
commit25262bdbcec856c4b99b72b86a3ccb7c363ee9e0 (patch)
tree2201cd5b49b3cdd54953b706673d9de66c5b02ca /crawl-ref/source/item_use.cc
parentceb51161c896f17a951b0ba2bbd4b48f8fead13a (diff)
downloadcrawl-ref-25262bdbcec856c4b99b72b86a3ccb7c363ee9e0.tar.gz
crawl-ref-25262bdbcec856c4b99b72b86a3ccb7c363ee9e0.zip
Rename purple smoke to clouds of translocational energy
Diffstat (limited to 'crawl-ref/source/item_use.cc')
-rw-r--r--crawl-ref/source/item_use.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 19378c4da6..22027b1137 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -1829,7 +1829,7 @@ static bool _dispersal_hit_victim(bolt& beam, actor* victim, int dmg,
if (victim->atype() == ACT_PLAYER)
{
// Leave a purple cloud.
- place_cloud(CLOUD_PURP_SMOKE, you.pos(), 1 + random2(3), KC_YOU);
+ place_cloud(CLOUD_TLOC_ENERGY, you.pos(), 1 + random2(3), KC_YOU);
victim->moveto(pos);
mpr("You blink!");
@@ -1844,7 +1844,7 @@ static bool _dispersal_hit_victim(bolt& beam, actor* victim, int dmg,
mon->move_to_pos(pos);
// Leave a purple cloud.
- place_cloud(CLOUD_PURP_SMOKE, oldpos, 1 + random2(3),
+ place_cloud(CLOUD_TLOC_ENERGY, oldpos, 1 + random2(3),
victim->kill_alignment());
mon->apply_location_effects(oldpos);