summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-27 17:46:38 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-27 17:46:38 +0000
commit52dea493f8e4d6db38ece11df39754d213bbe878 (patch)
tree35b5559ca30bcf0258bc884b221a66d8871329d1
parent94d90d4b51e50e55db710747911087808d5265ff (diff)
downloadcrawl-ref-52dea493f8e4d6db38ece11df39754d213bbe878.tar.gz
crawl-ref-52dea493f8e4d6db38ece11df39754d213bbe878.zip
Giant clubs should be eligible for brown snakes when casting sticks-to-snakes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup@157 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/spells4.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index c6ff4d0b39..d786fe52b9 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -723,7 +723,7 @@ void cast_sticks_to_snakes(int pow)
// ogres, and most importantly ogre magi). Still it's unlikely
// any character is strong enough to bother lugging a few of
// these around. -- bwr
- if (item_mass( you.inv[ weapon ] ) < 500)
+ if (item_mass( you.inv[ weapon ] ) < 300)
mon = MONS_SNAKE;
else
mon = MONS_BROWN_SNAKE;