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 4bf5b79575..88d89636ce 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -240,10 +240,10 @@ static weapon_def Weapon_prop[NUM_WEAPONS] =
// Long blades
{ WPN_FALCHION, "falchion", 8, 2, 13, 170, 4,
- SK_LONG_BLADES, HANDS_ONE, SIZE_MEDIUM, MI_NONE, false,
+ SK_LONG_BLADES, HANDS_ONE, SIZE_SMALL, MI_NONE, false,
DAMV_SLICING, 10 }, // or perhaps DAMV_CHOPPING is more apt?
{ WPN_BLESSED_FALCHION, "blessed falchion", 10, 2, 11, 170, 4,
- SK_LONG_BLADES, HANDS_ONE, SIZE_MEDIUM, MI_NONE, false,
+ SK_LONG_BLADES, HANDS_ONE, SIZE_SMALL, MI_NONE, false,
DAMV_SLICING, 10 }, // or perhaps DAMV_CHOPPING is more apt?
{ WPN_LONG_SWORD, "long sword", 10, 1, 14, 160, 3,
SK_LONG_BLADES, HANDS_ONE, SIZE_MEDIUM, MI_NONE, false,
@@ -2058,7 +2058,7 @@ bool is_range_weapon_type( weapon_type wtype )
const char *ammo_name(missile_type ammo)
{
- return (ammo < 0 || ammo >= NUM_MISSILES? "eggplant"
+ return (ammo < 0 || ammo >= NUM_MISSILES ? "eggplant"
: Missile_prop[ Missile_index[ammo] ].name);
}