summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monster.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monster.cc')
-rw-r--r--crawl-ref/source/monster.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc
index 5016684fb2..85306480ab 100644
--- a/crawl-ref/source/monster.cc
+++ b/crawl-ref/source/monster.cc
@@ -406,6 +406,10 @@ int monsters::body_weight() const
if (type == MONS_SKELETON_SMALL || type == MONS_SKELETON_LARGE)
weight /= 2;
+ // Slime creature weight is multiplied by the number merged.
+ if (type == MONS_SLIME_CREATURE)
+ weight *= number;
+
return (weight);
}