From d589eda312a0cb9c2fa2fc5b0f8746f5cc16c387 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Tue, 26 Sep 2006 16:54:48 +0000 Subject: 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 --- crawl-ref/source/item_use.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.3-54-g00ecf