summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemprop.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-29 15:17:07 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-29 15:17:07 +0000
commit26814eb205cba00b5f81f7689043d0ca6a235106 (patch)
treea493902bef13bf6ff526cc818337496f79165d96 /crawl-ref/source/itemprop.cc
parent018f4e0bb5ddd7dcdd565ec5e790577cf93c97be (diff)
downloadcrawl-ref-26814eb205cba00b5f81f7689043d0ca6a235106.tar.gz
crawl-ref-26814eb205cba00b5f81f7689043d0ca6a235106.zip
Disallow dualwielders to wield 2-handed weapons, even if they currently
only have one weapon since this would mean they'd never replace it again with a 1-handed weapon to pair another weapon with. Remove orc warlords from Beogh reinforcement and increase chance for plain orcs. Change "Heel!" command to "Come here!" because "Heel!" looks completely out of place for intelligent followers. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4764 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/itemprop.cc')
-rw-r--r--crawl-ref/source/itemprop.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/itemprop.cc b/crawl-ref/source/itemprop.cc
index 81eb901b36..27c2bfe7b2 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -2633,7 +2633,7 @@ bool is_colourful_item( const item_def &item )
bool is_shield(const item_def &item)
{
return item.base_type == OBJ_ARMOUR
- && get_armour_slot(item) == EQ_SHIELD;
+ && get_armour_slot(item) == EQ_SHIELD;
}
// Returns true if the given item cannot be wielded with the given shield.