summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/transform.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-03-24 04:18:45 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-03-24 04:34:12 +0000
commit38b53f5094d7a525c4656525f7f5ccde5cdb926f (patch)
treec31df221cd8cec2df8f6518bcfc773e6114b96e3 /crawl-ref/source/transform.cc
parentae7c95981e1d9224cb2f858e358348ac54ab998d (diff)
downloadcrawl-ref-38b53f5094d7a525c4656525f7f5ccde5cdb926f.tar.gz
crawl-ref-38b53f5094d7a525c4656525f7f5ccde5cdb926f.zip
Allow all forms to speak
All of these could read scrolls (except wisp) and invoke god abilities, and tree form could cast spells too. Disallowing those from what are already some of the most limited forms seems hugely problematic, whereas allowing speaking is unlikely to change much other than making the list of form restrictions slightly simpler.
Diffstat (limited to 'crawl-ref/source/transform.cc')
-rw-r--r--crawl-ref/source/transform.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/crawl-ref/source/transform.cc b/crawl-ref/source/transform.cc
index b75848aa85..c399b22f60 100644
--- a/crawl-ref/source/transform.cc
+++ b/crawl-ref/source/transform.cc
@@ -131,14 +131,6 @@ bool form_likes_water(transformation_type form)
return form_can_swim(form);
}
-bool form_has_mouth(transformation_type form)
-{
- return form != TRAN_TREE
- && form != TRAN_WISP
- && form != TRAN_JELLY
- && form != TRAN_FUNGUS;
-}
-
bool form_likes_lava(transformation_type form)
{
// Lava orcs can only swim in non-phys-change forms.