summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/decks.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index 8e9ca93b77..063d5e6122 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -1742,7 +1742,7 @@ static int _drain_monsters(coord_def where, int pow, int, actor *)
if (mon == NULL)
return (0);
- if (mon->drain_exp(&you, false, pow / 50))
+ if (!mon->drain_exp(&you, false, pow / 50))
simple_monster_message(mon, " is unaffected.");
}