From 587f6e766e20b6e4ee3474e18b515bd4d5644e68 Mon Sep 17 00:00:00 2001 From: Shmuale Mark Date: Mon, 4 Aug 2014 08:03:29 -0400 Subject: Don't crash the game on invoking BiA (#8851). --- crawl-ref/source/spl-summoning.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crawl-ref/source/spl-summoning.cc b/crawl-ref/source/spl-summoning.cc index a1e67aed25..a7974a337c 100644 --- a/crawl-ref/source/spl-summoning.cc +++ b/crawl-ref/source/spl-summoning.cc @@ -643,7 +643,8 @@ bool summon_berserker(int pow, actor *caster, monster_type override_mons) // trolls mon = random_choose_weighted(3, MONS_TROLL, 3, MONS_DEEP_TROLL, - 2, MONS_IRON_TROLL); + 2, MONS_IRON_TROLL, + 0); } else { -- cgit v1.2.3-54-g00ecf