summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index de0534aeb7..226abf2fcd 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -5811,9 +5811,10 @@ static bool _handle_special_ability(monsters *monster, bolt & beem)
{
case MONS_UGLY_THING:
case MONS_VERY_UGLY_THING:
- // A (very) ugly thing's proximity to others of its kind can
- // mutate it into a different (very) ugly thing.
- used = ugly_thing_proximity_mutate(monster);
+ // A (very) ugly thing's proximity to you if you're glowing, or
+ // to others of its kind, can mutate it into a different (very)
+ // ugly thing.
+ used = ugly_thing_mutate(monster, true);
break;
case MONS_ORC_KNIGHT: