summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-monench.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-10-10 22:18:56 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-10-10 22:23:04 +0200
commitc9d6340523ff2d9f263a5e1857d777ffa085f201 (patch)
treee22b4fd5276bd05f52fbd4d6b2f7325f92ced321 /crawl-ref/source/spl-monench.cc
parent57e02e26fc62dc966a41d0d4d69bf45050f4a16b (diff)
downloadcrawl-ref-c9d6340523ff2d9f263a5e1857d777ffa085f201.tar.gz
crawl-ref-c9d6340523ff2d9f263a5e1857d777ffa085f201.zip
Felids: dogs are not tameable. Enslavement still works, though.
Diffstat (limited to 'crawl-ref/source/spl-monench.cc')
-rw-r--r--crawl-ref/source/spl-monench.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/spl-monench.cc b/crawl-ref/source/spl-monench.cc
index 0b14e3008c..5c3306ab08 100644
--- a/crawl-ref/source/spl-monench.cc
+++ b/crawl-ref/source/spl-monench.cc
@@ -85,6 +85,9 @@ static int _tame_beast_monsters(coord_def where, int pow, int, actor *)
return 0;
}
+ if (you.species == SP_CAT && mons_genus(mons->type) == MONS_HOUND)
+ return 0;
+
// 50% bonus for dogs
if (mons->type == MONS_HOUND || mons->type == MONS_WAR_DOG )
pow += (pow / 2);