summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/xom.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/xom.cc')
-rw-r--r--crawl-ref/source/xom.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/xom.cc b/crawl-ref/source/xom.cc
index fe1eca7283..aafdecaceb 100644
--- a/crawl-ref/source/xom.cc
+++ b/crawl-ref/source/xom.cc
@@ -1373,7 +1373,7 @@ static void _xom_zero_miscast()
messages.push_back("You trip over your bandages.");
}
- if (transform != TRAN_SPIDER && transform != TRAN_AIR)
+ if (transform != TRAN_SPIDER)
{
std::string str = "A monocle briefly appears over your ";
str += coinflip() ? "right" : "left";
@@ -1507,9 +1507,6 @@ static void _get_hand_type(std::string &hand, bool &can_plural)
const int transform = you.attribute[ATTR_TRANSFORMATION];
- if (transform == TRAN_AIR)
- return;
-
std::vector<std::string> hand_vec;
std::vector<bool> plural_vec;
bool plural;