summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/viewgeom.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2013-06-06 18:52:34 -0600
committerSteve Melenchuk <smelenchuk@gmail.com>2013-06-06 18:52:34 -0600
commite03bc23d4ededba17495d25e5495a0ca829f68a9 (patch)
tree5b147159c9ff1f46fa75a89040403757f8110d4e /crawl-ref/source/viewgeom.cc
parentab2ad4d442a7ff675788df525e6d7d1ef004e72c (diff)
downloadcrawl-ref-e03bc23d4ededba17495d25e5495a0ca829f68a9.tar.gz
crawl-ref-e03bc23d4ededba17495d25e5495a0ca829f68a9.zip
Don't let Lava Orcs incinerate ZotDef (#7150).
This is exceedingly kludgy, but it works.
Diffstat (limited to 'crawl-ref/source/viewgeom.cc')
-rw-r--r--crawl-ref/source/viewgeom.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/viewgeom.cc b/crawl-ref/source/viewgeom.cc
index 846adb6a89..82e0c942fb 100644
--- a/crawl-ref/source/viewgeom.cc
+++ b/crawl-ref/source/viewgeom.cc
@@ -363,7 +363,8 @@ void crawl_view_geometry::init_geometry()
termsz = coord_def(get_number_of_cols(), get_number_of_lines());
hudsz = coord_def(HUD_WIDTH,
HUD_HEIGHT + (Options.show_gold_turns ? 1 : 0)
- + crawl_state.game_is_zotdef());
+ + crawl_state.game_is_zotdef()
+ + ((you.species == SP_LAVA_ORC) ? 1 : 0));
const _inline_layout lay_inline(termsz, hudsz);
const _mlist_col_layout lay_mlist(termsz, hudsz);