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.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc
index 85306480ab..511951499c 100644
--- a/crawl-ref/source/monster.cc
+++ b/crawl-ref/source/monster.cc
@@ -407,7 +407,7 @@ int monsters::body_weight() const
weight /= 2;
// Slime creature weight is multiplied by the number merged.
- if (type == MONS_SLIME_CREATURE)
+ if (type == MONS_SLIME_CREATURE && number > 1)
weight *= number;
return (weight);