summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemprop.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/itemprop.cc')
-rw-r--r--crawl-ref/source/itemprop.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/itemprop.cc b/crawl-ref/source/itemprop.cc
index 88d89636ce..359ba8f0aa 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -930,7 +930,7 @@ int get_weapon_brand( const item_def &item )
int get_ammo_brand( const item_def &item )
{
- // no artefact arrows yet -- bwr
+ // No artefact arrows yet. -- bwr
if (item.base_type != OBJ_MISSILES || is_random_artefact( item ))
return (SPMSL_NORMAL);
@@ -2042,8 +2042,8 @@ launch_retval is_launched(actor *actor, const item_def *launcher,
return (LRET_LAUNCHED);
}
- return (is_throwable(missile, actor->body_size())?
- LRET_THROWN : LRET_FUMBLED);
+ return (is_throwable(missile, actor->body_size()) ? LRET_THROWN
+ : LRET_FUMBLED);
}
bool is_range_weapon_type( weapon_type wtype )