summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-miscast.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-27 16:11:13 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-27 23:35:19 +0100
commit1a54a13a9f82ed3b502d12c50809b02f71c2758d (patch)
tree3c1df23c394ef8dc8032ef4ab8b58ab81a0ebc08 /crawl-ref/source/spl-miscast.cc
parent3f9f1092ff86ddf0e1116b29848e6827c111ca71 (diff)
downloadcrawl-ref-1a54a13a9f82ed3b502d12c50809b02f71c2758d.tar.gz
crawl-ref-1a54a13a9f82ed3b502d12c50809b02f71c2758d.zip
Simplify potion quaff-id.
Diffstat (limited to 'crawl-ref/source/spl-miscast.cc')
-rw-r--r--crawl-ref/source/spl-miscast.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-miscast.cc b/crawl-ref/source/spl-miscast.cc
index e85d7ec20e..6eea1ea015 100644
--- a/crawl-ref/source/spl-miscast.cc
+++ b/crawl-ref/source/spl-miscast.cc
@@ -597,7 +597,7 @@ void MiscastEffect::_potion_effect(potion_type pot_eff, int pot_pow)
{
if (target->is_player())
{
- potion_effect(pot_eff, pot_pow, false, false);
+ potion_effect(pot_eff, pot_pow, nullptr, false);
return;
}