summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/artefact.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/artefact.cc b/crawl-ref/source/artefact.cc
index 4f73531791..4f0a9100e2 100644
--- a/crawl-ref/source/artefact.cc
+++ b/crawl-ref/source/artefact.cc
@@ -197,7 +197,8 @@ 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_REAPING)
+ || brand == SPWPN_VAMPIRICISM || brand == SPWPN_REAPING
+ || brand == SPWPN_CHAOS)
{
return (false);
}