summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells3.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells3.cc')
-rw-r--r--crawl-ref/source/spells3.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index 9037a55cdb..ef67f7ba45 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -900,6 +900,7 @@ bool project_noise(void)
Type recalled:
0 = anything
1 = undead only (Kiku religion ability)
+ 2 = orcs only (Beogh religion ability)
*/
bool recall(char type_recalled)
{
@@ -951,6 +952,11 @@ bool recall(char type_recalled)
}
}
}
+ else if (type_recalled == 2) // Beogh
+ {
+ if (mons_species(monster->type) != MONS_ORC)
+ continue;
+ }
if (empty_surrounds(you.x_pos, you.y_pos, DNGN_FLOOR, 3, false, empty))
{