From f5d7515c3cd305b003f95ac5c636eb0c529a0b9c Mon Sep 17 00:00:00 2001 From: dshaligram Date: Mon, 29 Dec 2008 16:09:35 +0000 Subject: Implement divination miscasts for orange statues, fix silver and orange statues to attack monsters as they attack the player. Also fix clouds not being cleared on level reset in dungeon.cc. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8017 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/it_use2.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/it_use2.cc') diff --git a/crawl-ref/source/it_use2.cc b/crawl-ref/source/it_use2.cc index 16ba9dfdd4..2c3714ae77 100644 --- a/crawl-ref/source/it_use2.cc +++ b/crawl-ref/source/it_use2.cc @@ -217,7 +217,8 @@ bool potion_effect( potion_type pot_eff, int pow, bool was_known ) break; case POT_PARALYSIS: - you.paralyse((2 + random2( 6 + you.duration[DUR_PARALYSIS] )) / factor); + you.paralyse(NULL, + (2 + random2( 6 + you.duration[DUR_PARALYSIS] )) / factor); xom_is_stimulated(64 / factor); break; -- cgit v1.2.3-54-g00ecf