summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/artefact.cc
diff options
context:
space:
mode:
authorEino Keskitalo <evktalo@users.sourceforge.net>2009-10-30 01:33:29 +0200
committerEino Keskitalo <evktalo@users.sourceforge.net>2009-10-30 01:33:29 +0200
commit86b09e2f211714a23a44dc39d58dd5fb2fe50214 (patch)
treece25da7397973358f34417cc4bbb1bb9b41909b9 /crawl-ref/source/artefact.cc
parent929d367d195931d5d04ac198e45b800289c724c0 (diff)
downloadcrawl-ref-86b09e2f211714a23a44dc39d58dd5fb2fe50214.tar.gz
crawl-ref-86b09e2f211714a23a44dc39d58dd5fb2fe50214.zip
SPWPN_SHADOW -> SPWPN_REAPING (my bad)
Signed-off-by: Eino Keskitalo <evktalo@users.sourceforge.net>
Diffstat (limited to 'crawl-ref/source/artefact.cc')
-rw-r--r--crawl-ref/source/artefact.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/artefact.cc b/crawl-ref/source/artefact.cc
index bdcbe2c8b1..7f6f43e6d7 100644
--- a/crawl-ref/source/artefact.cc
+++ b/crawl-ref/source/artefact.cc
@@ -125,7 +125,7 @@ static bool _god_fits_artefact(const god_type which_god, const item_def &item,
return (false);
else if (is_good_god(which_god)
&& (brand == SPWPN_DRAINING || brand == SPWPN_PAIN
- || brand == SPWPN_VAMPIRICISM || brand == SPWPN_SHADOW
+ || brand == SPWPN_VAMPIRICISM || brand == SPWPN_REAPING
|| is_demonic(item)
|| artefact_wpn_property(item, ARTP_CURSED) != 0))
{
@@ -194,7 +194,7 @@ static bool _god_fits_artefact(const god_type which_god, const item_def &item,
// Anti-necromancy god: nothing involving necromancy or
// necromantic spell use.
if (brand == SPWPN_DRAINING || brand == SPWPN_PAIN
- || brand == SPWPN_VAMPIRICISM || brand == SPWPN_SHADOW)
+ || brand == SPWPN_VAMPIRICISM || brand == SPWPN_REAPING)
{
return (false);
}
@@ -1002,7 +1002,7 @@ void static _get_randart_properties(const item_def &item,
&& proprt[ARTP_BRAND] != SPWPN_DRAINING
&& proprt[ARTP_BRAND] != SPWPN_VAMPIRICISM
&& proprt[ARTP_BRAND] != SPWPN_PAIN
- && proprt[ARTP_BRAND] != SPWPN_SHADOW)
+ && proprt[ARTP_BRAND] != SPWPN_REAPING)
{
proprt[ARTP_NEGATIVE_ENERGY] = 1;
power_level++;