summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mstuff2.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/mstuff2.cc')
-rw-r--r--crawl-ref/source/mstuff2.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/mstuff2.cc b/crawl-ref/source/mstuff2.cc
index 38d0d8c885..d2e87ede33 100644
--- a/crawl-ref/source/mstuff2.cc
+++ b/crawl-ref/source/mstuff2.cc
@@ -49,6 +49,9 @@ static unsigned char monster_abjuration(int pow, bool test);
// to be some sort of trap prior to function call: {dlb}
void mons_trap(struct monsters *monster)
{
+ if (!is_trap_square(monster->x, monster->y))
+ return;
+
int temp_rand = 0; // probability determination {dlb}
// single calculation permissible {dlb}