summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-22 22:01:15 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-04-22 22:01:15 +0000
commit7bc3a2b9ca760f6672cd5bf4dc3ab808a8f5567b (patch)
treea117a3ec32f69084b0230c1fd3d1c17d764cb185 /crawl-ref/source/spells2.cc
parentee49cc369eed9e0dad24925cce49db94f0762700 (diff)
downloadcrawl-ref-7bc3a2b9ca760f6672cd5bf4dc3ab808a8f5567b.tar.gz
crawl-ref-7bc3a2b9ca760f6672cd5bf4dc3ab808a8f5567b.zip
Add minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9677 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells2.cc')
-rw-r--r--crawl-ref/source/spells2.cc8
1 files changed, 3 insertions, 5 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index bff4189ff6..8e9bf686b3 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -1056,10 +1056,9 @@ bool cast_sticks_to_snakes(int pow, god_type god)
|| wpn.sub_type == WPN_BLOWGUN))
{
// Upsizing Snakes to Brown Snakes as the base class for using
- // the really big sticks (so bonus applies really only to trolls,
- // ogres, and most importantly ogre magi). Still it's unlikely
- // any character is strong enough to bother lugging a few of
- // these around. -- bwr
+ // the really big sticks (so bonus applies really only to trolls
+ // and ogres). Still, it's unlikely any character is strong
+ // enough to bother lugging a few of these around. - bwr
if (item_mass(wpn) < 300)
mon = MONS_SNAKE;
@@ -1098,7 +1097,6 @@ bool cast_sticks_to_snakes(int pow, god_type god)
mprf("You create %s snake%s!",
count > 1 ? "some" : "a",
count > 1 ? "s" : "");
-
return (true);
}