summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-11 19:33:28 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-03-11 19:33:28 +0000
commit1daa1c18ab74074b6d4d0bb4b3fb2c4e250516af (patch)
treeb8dfd0d74e437598235556e3ae94a92f4e559412
parent07f8353f7e775c8f6509512df57a51a70a25ef31 (diff)
downloadcrawl-ref-1daa1c18ab74074b6d4d0bb4b3fb2c4e250516af.tar.gz
crawl-ref-1daa1c18ab74074b6d4d0bb4b3fb2c4e250516af.zip
Allow non-Hill Orcs to occasionally summon wargs via Call Canine
Familiar (although not as often). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3603 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/spells4.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells4.cc b/crawl-ref/source/spells4.cc
index f646952038..9c57cac55a 100644
--- a/crawl-ref/source/spells4.cc
+++ b/crawl-ref/source/spells4.cc
@@ -487,7 +487,7 @@ void cast_summon_large_mammal(int pow)
switch (temp_rand % 7)
{
case 0:
- if (you.species == SP_HILL_ORC && one_chance_in(3))
+ if (one_chance_in(you.species == SP_HILL_ORC ? 3 : 6))
mon = MONS_WARG;
else
mon = MONS_WOLF;