summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-13 21:02:42 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-13 21:02:42 +0000
commit61b8176337742ccaa81d0bd1f45e3dde3c44223b (patch)
treee07eb0d185d1ddfe11114ce5633fd45808639bc2 /crawl-ref
parente6f8b61aa81a49f6e12c82795a674c1ef8a00d7c (diff)
downloadcrawl-ref-61b8176337742ccaa81d0bd1f45e3dde3c44223b.tar.gz
crawl-ref-61b8176337742ccaa81d0bd1f45e3dde3c44223b.zip
Add more minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9061 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/makeitem.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index 3d26574215..6825b969bc 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -2909,7 +2909,8 @@ static bool _weapon_is_visibly_special(const item_def &item)
const bool visibly_branded = (brand != SPWPN_NORMAL);
// Nobody would bother enchanting a mundane club.
- if (item.sub_type == WPN_CLUB || item.sub_type == WPN_GIANT_CLUB
+ if (item.sub_type == WPN_CLUB
+ || item.sub_type == WPN_GIANT_CLUB
|| item.sub_type == WPN_GIANT_SPIKED_CLUB)
{
return (false);