summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-17 17:11:26 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-11-17 17:11:26 +0000
commit87ebfe98030055b438a5bf1d6638499263bec84b (patch)
treeb74950853774ebb6e3daa5cdbbacf65384b62ce7 /crawl-ref/source/makeitem.cc
parent1301256d61a713a4840836a7100bad2e0f7111ea (diff)
downloadcrawl-ref-87ebfe98030055b438a5bf1d6638499263bec84b.tar.gz
crawl-ref-87ebfe98030055b438a5bf1d6638499263bec84b.zip
Add minor cosmetic fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@7458 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/makeitem.cc')
-rw-r--r--crawl-ref/source/makeitem.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index f6ccbbf420..d992d0af7c 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -844,7 +844,7 @@ void item_colour( item_def &item )
default:
break;
}
-} // end item_colour()
+}
static weapon_type _determine_weapon_subtype(int item_level)
{
@@ -3613,7 +3613,7 @@ static item_make_species_type _give_weapon(monsters *mon, int level,
}
default: break;
- } // end "switch(mon->type)"
+ }
// Nagas don't get racial stuff.
if (mons_genus(mon->type) == MONS_NAGA)
@@ -4275,8 +4275,8 @@ void item_set_appearance(item_def &item)
case OBJ_WEAPONS:
if (_weapon_is_visibly_special(item))
{
- set_equip_desc( item,
- (coinflip() ? ISFLAG_GLOWING : ISFLAG_RUNED) );
+ set_equip_desc(item,
+ (coinflip() ? ISFLAG_GLOWING : ISFLAG_RUNED));
}
break;