summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/monstuff.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 8022e24f2f..61e3bcdee6 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -934,7 +934,8 @@ static bool valid_morph( struct monsters *monster, int new_mclass )
// suggests.
if (mons_genus(new_mclass) == MONS_DRACONIAN
&& new_mclass != MONS_DRACONIAN
- && !one_chance_in(4))
+ && !player_in_branch(BRANCH_HALL_OF_ZOT)
+ && !one_chance_in(10))
{
return (false);
}