summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells2.cc')
-rw-r--r--crawl-ref/source/spells2.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index ee976ad7e5..11f69b5836 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -1484,7 +1484,7 @@ void summon_scorpions(int pow)
void summon_ugly_thing(int pow)
{
- int chance = std::max(6 - (pow / 14), 2);
+ int chance = std::max(6 - (pow / 11) + random2(2), 1);
monster_type ugly = (one_chance_in(chance)) ?
MONS_VERY_UGLY_THING : MONS_UGLY_THING;