summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index 3bd13ae45d..cd972897b5 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -2369,15 +2369,15 @@ void beam_drop_object( bolt &beam, item_def *item, int x, int y )
if (beam.is_tracer || beam.flavour != BEAM_MISSILE)
return;
- // maybe we can remove the YOU_KILL...
- if ( grid_destroys_items(grd[x][y]) && YOU_KILL(beam.thrower) )
+ if ( grid_destroys_items(grd[x][y]) )
{
- mprf(MSGCH_SOUND, grid_item_destruction_message(grd[x][y]));
+ // Too much message spam otherwise
+ if ( YOU_KILL(beam.thrower) )
+ mprf(MSGCH_SOUND, grid_item_destruction_message(grd[x][y]));
return;
}
- if (YOU_KILL(beam.thrower) // ie if you threw it.
- && (!grid_destroys_items(grd[x][y])))
+ if (YOU_KILL(beam.thrower)) // you threw it
{
int chance;