summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemprop.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-14 01:33:19 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-14 01:33:19 +0000
commit3fa423a7e36abe4f8c7448d74249de9eac1d6ec4 (patch)
tree45d87524802a48bc330f880b4a8e220c7e4e1ae5 /crawl-ref/source/itemprop.cc
parent8947c0ad81e7b3f8d2cde4eb1c8c6317d2790f22 (diff)
downloadcrawl-ref-3fa423a7e36abe4f8c7448d74249de9eac1d6ec4.tar.gz
crawl-ref-3fa423a7e36abe4f8c7448d74249de9eac1d6ec4.zip
Make TSO's blessing turn demon blades turn into blessed blades again,
for now. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4225 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/itemprop.cc')
-rw-r--r--crawl-ref/source/itemprop.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/itemprop.cc b/crawl-ref/source/itemprop.cc
index 966ee4ac7a..d225351ce5 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -1607,7 +1607,7 @@ bool demonic2nondemonic( item_def &item )
return (false);
case WPN_DEMON_BLADE:
- item.sub_type = WPN_SCIMITAR;
+ item.sub_type = WPN_BLESSED_BLADE;
break;
case WPN_DEMON_WHIP:
@@ -1644,7 +1644,7 @@ int weapon_impact_mass( const item_def &wpn )
return ((weapon_str_weight( wpn ) * item_mass( wpn ) + 5) / 10);
}
-int weapon_str_required( const item_def &wpn, bool hand_half )
+int weapon_str_required( const item_def &wpn, bool hand_half )
{
ASSERT (wpn.base_type == OBJ_WEAPONS || wpn.base_type == OBJ_STAVES);