From 98b7f12e57c76638fd88f2d56bd54607267b392f Mon Sep 17 00:00:00 2001 From: Matthew Cline Date: Sun, 25 Oct 2009 03:45:53 -0700 Subject: beam.cc: Statues don't scream Grantie statues no longer scream when they're disintegrated, since they're entirely mundane. --- crawl-ref/source/beam.cc | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'crawl-ref/source/beam.cc') 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; -- cgit v1.2.3-54-g00ecf