summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/direct.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/direct.cc')
-rw-r--r--crawl-ref/source/direct.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/direct.cc b/crawl-ref/source/direct.cc
index bf044736fc..16aa831cf4 100644
--- a/crawl-ref/source/direct.cc
+++ b/crawl-ref/source/direct.cc
@@ -1228,6 +1228,10 @@ std::string feature_description(int grid)
case DNGN_GREEN_CRYSTAL_WALL:
return ("A wall of green crystal.");
case DNGN_ORCISH_IDOL:
+ if (you.species == SP_HILL_ORC)
+ {
+ return ("An idol of Beogh.");
+ }
return ("An orcish idol.");
case DNGN_WAX_WALL:
return ("A wall of solid wax.");
@@ -1366,6 +1370,8 @@ std::string feature_description(int grid)
return ("A silver altar of Elyvilon.");
case DNGN_ALTAR_LUGONU:
return ("A corrupted altar of Lugonu.");
+ case DNGN_ALTAR_BEOGH:
+ return ("A roughly hewn altar of Beogh.");
case DNGN_BLUE_FOUNTAIN:
return ("A fountain of clear blue water.");
case DNGN_SPARKLING_FOUNTAIN: