From 6a3d89b3c79e776920959341be9c02e39ee68d5f Mon Sep 17 00:00:00 2001 From: Stefan O'Rear Date: Mon, 2 Nov 2009 02:48:15 -0800 Subject: Remove mapping abilities from the game Mapping still exists on cards, scrolls, Xom, and as the passive mutation. The ball of seeing exists, but will have to be dealt with. --- crawl-ref/source/itemprop.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/itemprop.cc') diff --git a/crawl-ref/source/itemprop.cc b/crawl-ref/source/itemprop.cc index 23c2861b13..a407337fc5 100644 --- a/crawl-ref/source/itemprop.cc +++ b/crawl-ref/source/itemprop.cc @@ -2520,7 +2520,7 @@ bool gives_ability(const item_def &item) return (false); // Check for evokable randart properties. - for (int rap = ARTP_INVISIBLE; rap <= ARTP_MAPPING; rap++) + for (int rap = ARTP_INVISIBLE; rap <= ARTP_BERSERK; rap++) if (artefact_wpn_property( item, static_cast(rap) )) return (true); -- cgit v1.2.3-54-g00ecf