From f07a8e99cdcbb23198112b41cd1f38f90ee9f156 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Fri, 25 Sep 2009 09:52:57 -0500 Subject: Add spacing fixes. --- crawl-ref/source/player.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/player.cc') diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc index 58101f895b..8aab364852 100644 --- a/crawl-ref/source/player.cc +++ b/crawl-ref/source/player.cc @@ -6383,7 +6383,7 @@ std::string player::shout_verb() const int player::damage_type(int) { - const int wpn = equip[ EQ_WEAPON ]; + const int wpn = equip[EQ_WEAPON]; if (wpn != -1) return (get_vorpal_type(inv[wpn])); @@ -6398,12 +6398,12 @@ int player::damage_type(int) int player::damage_brand(int) { int ret = SPWPN_NORMAL; - const int wpn = equip[ EQ_WEAPON ]; + const int wpn = equip[EQ_WEAPON]; if (wpn != -1) { if (!is_range_weapon(inv[wpn])) - ret = get_weapon_brand( inv[wpn] ); + ret = get_weapon_brand(inv[wpn]); } else if (duration[DUR_CONFUSING_TOUCH]) ret = SPWPN_CONFUSE; -- cgit v1.2.3-54-g00ecf