summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index cc236f217a..f04a9e4094 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -6827,12 +6827,12 @@ void player::rot(actor *who, int rotlevel, int immed_rot)
disease_player( 50 + random2(100) );
}
-void player::confuse(int str)
+void player::confuse(actor *who, int str)
{
confuse_player(str);
}
-void player::paralyse(int str)
+void player::paralyse(actor *who, int str)
{
int &paralysis(duration[DUR_PARALYSIS]);
@@ -6846,7 +6846,7 @@ void player::paralyse(int str)
paralysis = 13;
}
-void player::petrify(int str)
+void player::petrify(actor *who, int str)
{
int &petrif(duration[DUR_PETRIFIED]);
@@ -6859,7 +6859,7 @@ void player::petrify(int str)
petrif = std::min(13, petrif);
}
-void player::slow_down(int str)
+void player::slow_down(actor *foe, int str)
{
::slow_player( str );
}