summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stuff.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/stuff.cc')
-rw-r--r--crawl-ref/source/stuff.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/stuff.cc b/crawl-ref/source/stuff.cc
index 01b5b8a030..1b241bb807 100644
--- a/crawl-ref/source/stuff.cc
+++ b/crawl-ref/source/stuff.cc
@@ -366,7 +366,7 @@ void scale_dice( dice_def &dice, int threshold )
dice.num *= 2;
// If it's an odd number, lose one; this is more than
// compensated by the increase in number of dice.
- dice.size = dice.size / 2;
+ dice.size /= 2;
}
}