From 2495f7b7d5bc09feaea3d8a0bf148e2fcf7ff5a7 Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Mon, 12 Oct 2009 19:47:19 +0200 Subject: Don't say that plants are "very slow", say they can't move instead. --- crawl-ref/source/describe.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/describe.cc') diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc index 462320deee..e763b1bbd7 100644 --- a/crawl-ref/source/describe.cc +++ b/crawl-ref/source/describe.cc @@ -2688,6 +2688,9 @@ static std::string _monster_stat_description(const monsters& mon) if (mons_immune_magic(&mon)) result << pronoun << " is immune to magical enchantments.$"; + if (mons_class_flag(mon.type, M_STATIONARY)) + result << pronoun << " cannot move.$"; + // These differ between ghost demon monsters, so would be spoily. if (!mons_is_ghost_demon(mon.type)) { @@ -2699,7 +2702,7 @@ static std::string _monster_stat_description(const monsters& mon) // Unusual monster speed. const int speed = mons_base_speed(&mon); - if (speed != 10) + if (speed != 10 && speed != 0) { result << pronoun << " is "; if (speed < 7) -- cgit v1.2.3-54-g00ecf