summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-26 16:54:48 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-26 16:54:48 +0000
commitd589eda312a0cb9c2fa2fc5b0f8746f5cc16c387 (patch)
tree76d7a6989862e3fc260522985e5dc615015ec042
parent099aaff516a9cb2c6b7e565c83decd7b98bfc957 (diff)
downloadcrawl-ref-d589eda312a0cb9c2fa2fc5b0f8746f5cc16c387.tar.gz
crawl-ref-d589eda312a0cb9c2fa2fc5b0f8746f5cc16c387.zip
Fixed giant (spiked) clubs being wieldable by the non-superstrong races.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup@148 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/item_use.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 59cee06d2e..9921a2a3aa 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -252,7 +252,7 @@ bool wield_weapon(bool auto_wield, int slot, bool show_weff_messages)
else
{
if ((you.species < SP_OGRE || you.species > SP_OGRE_MAGE)
- && item_mass( you.inv[item_slot] ) >= 500)
+ && item_mass( you.inv[item_slot] ) >= 300)
{
mpr("That's too large and heavy for you to wield.");
return (false);