From 6df1f8df4d0b9dcd691685db86354a17da861a61 Mon Sep 17 00:00:00 2001 From: Johanna Ploog Date: Wed, 6 Jan 2010 20:01:13 +0100 Subject: Distinguish icons of neutral and good neutral monsters. --- crawl-ref/source/tilepick.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crawl-ref/source/tilepick.cc') diff --git a/crawl-ref/source/tilepick.cc b/crawl-ref/source/tilepick.cc index 6d276af1ed..0f7ed79bbd 100644 --- a/crawl-ref/source/tilepick.cc +++ b/crawl-ref/source/tilepick.cc @@ -1139,6 +1139,8 @@ int tileidx_monster(const monsters *mons, bool detected) if (mons->friendly()) ch |= TILE_FLAG_PET; + else if (mons->good_neutral()) + ch |= TILE_FLAG_GD_NEUTRAL; else if (mons->neutral()) ch |= TILE_FLAG_NEUTRAL; else if (mons_looks_stabbable(mons)) -- cgit v1.2.3-54-g00ecf