From d458a7edd3acaed9be5c777234b70cd73f2d6474 Mon Sep 17 00:00:00 2001 From: David Lawrence Ramsey Date: Tue, 12 Jan 2010 07:29:28 -0600 Subject: Fix [2826100]: Make silver statues unholy, to match demon summoners. --- crawl-ref/source/monster.cc | 3 +++ 1 file changed, 3 insertions(+) (limited to 'crawl-ref/source/monster.cc') diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc index a5a02be458..3e51512148 100644 --- a/crawl-ref/source/monster.cc +++ b/crawl-ref/source/monster.cc @@ -3134,6 +3134,9 @@ bool monsters::is_holy() const bool monsters::is_unholy() const { + if (type == MONS_SILVER_STATUE) + return (true); + if (holiness() == MH_DEMONIC) return (true); -- cgit v1.2.3-54-g00ecf