summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mon-util.cc')
-rw-r--r--crawl-ref/source/mon-util.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index c94c7d204d..9c728d72f3 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -1723,11 +1723,8 @@ int exper_value(const monsters *monster)
// Monsters who can use equipment (even if only the equipment
// they are given) can be considerably enhanced because of
// the way weapons work for monsters. -- bwr
- if (item_usage == MONUSE_STARTING_EQUIPMENT
- || item_usage == MONUSE_WEAPONS_ARMOUR)
- {
+ if (item_usage >= MONUSE_STARTING_EQUIPMENT)
diff += 30;
- }
// Set a reasonable range on the difficulty modifier...
// Currently 70% - 200%. -- bwr