summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
authorMatthew Cline <zelgadis@sourceforge.net>2009-10-25 03:45:53 -0700
committerMatthew Cline <zelgadis@sourceforge.net>2009-10-25 03:45:53 -0700
commit98b7f12e57c76638fd88f2d56bd54607267b392f (patch)
tree9bdc6d2fd4228ddcb71417c77f05ede69a9394f7 /crawl-ref/source/beam.cc
parent056b1c337e3f8ba190c3985cc2e32b8a46c95759 (diff)
downloadcrawl-ref-98b7f12e57c76638fd88f2d56bd54607267b392f.tar.gz
crawl-ref-98b7f12e57c76638fd88f2d56bd54607267b392f.zip
beam.cc: Statues don't scream
Grantie statues no longer scream when they're disintegrated, since they're entirely mundane.
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc11
1 files changed, 6 insertions, 5 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index bfd01beb68..b7afe1e897 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -1772,7 +1772,8 @@ void bolt::nuke_wall_effect()
if (feat == DNGN_ROCK_WALL
|| feat == DNGN_WAX_WALL
- || feat == DNGN_CLEAR_ROCK_WALL)
+ || feat == DNGN_CLEAR_ROCK_WALL
+ || feat == DNGN_GRANITE_STATUE)
{
// Blood does not transfer onto floor.
if (is_bloodcovered(pos()))
@@ -1785,7 +1786,7 @@ void bolt::nuke_wall_effect()
obvious_effect = true;
}
}
- else if (feat == DNGN_ORCISH_IDOL || feat == DNGN_GRANITE_STATUE)
+ else if (feat == DNGN_ORCISH_IDOL)
{
grd(pos()) = DNGN_FLOOR;
@@ -1799,14 +1800,14 @@ void bolt::nuke_wall_effect()
mpr("You hear a hideous screaming!", MSGCH_SOUND);
else
{
- mpr("The statue screams as its substance crumbles away!",
+ mpr("The idol screams as its substance crumbles away!",
MSGCH_SOUND);
}
}
else if (see_cell(pos()))
- mpr("The statue twists and shakes as its substance crumbles away!");
+ mpr("The idol twists and shakes as its substance crumbles away!");
- if (feat == DNGN_ORCISH_IDOL && beam_source == NON_MONSTER)
+ if (beam_source == NON_MONSTER)
did_god_conduct(DID_DESTROY_ORCISH_IDOL, 8);
obvious_effect = true;