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.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index f9fff73040..68977eecb5 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -3872,8 +3872,12 @@ void bolt::affect_player()
// in item_use.cc.
if (item->sub_type == MI_THROWING_NET)
{
- player_caught_in_net();
- was_affected = true;
+ if (player_caught_in_net())
+ {
+ if (beam_source != NON_MONSTER)
+ xom_is_stimulated(64);
+ was_affected = true;
+ }
}
else if (item->special == SPMSL_CURARE)
{