From 3a83e92a99ce7a161f36e0bd2f1412580ef9bca0 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Mon, 20 Jul 2009 18:07:51 +0000 Subject: Apply caotto's plant god patch, for now named "Feawn". Also fix potions of porridge's menu colour being yellow for Mummies. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10355 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/directn.cc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/directn.cc') diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc index db4cbb7848..84662df593 100644 --- a/crawl-ref/source/directn.cc +++ b/crawl-ref/source/directn.cc @@ -2733,6 +2733,8 @@ static std::string _base_feature_desc(dungeon_feature_type grid, return ("staircase back to the Crypt"); case DNGN_RETURN_FROM_ZOT: return ("gate leading back out of this place"); + + // altars case DNGN_ALTAR_ZIN: return ("glowing white marble altar of Zin"); case DNGN_ALTAR_SHINING_ONE: @@ -2763,6 +2765,9 @@ static std::string _base_feature_desc(dungeon_feature_type grid, return ("roughly hewn altar of Beogh"); case DNGN_ALTAR_JIYVA: return ("viscous altar of Jiyva"); + case DNGN_ALTAR_FEAWN: + return ("blossoming altar of Feawn"); + case DNGN_FOUNTAIN_BLUE: return ("fountain of clear blue water"); case DNGN_FOUNTAIN_SPARKLING: @@ -3146,7 +3151,7 @@ static std::string _get_monster_desc(const monsters *mon) text += pronoun + " is looking in "; std::string name = foe->atype() == ACT_PLAYER ? "your" : (foe->name(DESC_NOCAP_THE) + "'s"); - text += name + "general direction.\n"; + text += name + " general direction.\n"; } } else if (!foe || mons_is_fleeing(mon)) -- cgit v1.2.3-54-g00ecf