summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/beam.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index 2ac31458bf..5b2467bda6 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -4157,6 +4157,16 @@ void bolt::affect_player_enchantment()
obvious_effect = true;
break;
+ case BEAM_BERSERK:
+ potion_effect( POT_BERSERK_RAGE, ench_power );
+ obvious_effect = true;
+ break;
+
+ case BEAM_MIGHT:
+ potion_effect( POT_MIGHT, ench_power );
+ obvious_effect = true;
+ break;
+
default:
// _All_ enchantments should be enumerated here!
mpr("Software bugs nibble your toes!");