From 111787503763e9d3eeb4eef2248926bf4a4eeb98 Mon Sep 17 00:00:00 2001 From: haranp Date: Thu, 24 Jul 2008 10:38:05 +0000 Subject: More cleanups. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6669 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/effects.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crawl-ref/source/effects.h') diff --git a/crawl-ref/source/effects.h b/crawl-ref/source/effects.h index f46bf26d2b..f19888b1d4 100644 --- a/crawl-ref/source/effects.h +++ b/crawl-ref/source/effects.h @@ -100,10 +100,10 @@ void yell(bool force = false); /* *********************************************************************** * called from: item_use - spell * *********************************************************************** */ -int holy_word(int pow, int caster, int x, int y, bool silent); +int holy_word(int pow, int caster, const coord_def& where, bool silent); int holy_word_player(int pow, int caster); -int holy_word_monsters(int x, int y, int pow, int caster); +int holy_word_monsters(coord_def where, int pow, int caster); // last updated 12may2000 {dlb} @@ -111,10 +111,10 @@ int holy_word_monsters(int x, int y, int pow, int caster); * called from: ability - decks - fight - it_use3 - item_use - mstuff2 - * spell * *********************************************************************** */ -int torment(int caster, int x, int y); +int torment(int caster, const coord_def& where); int torment_player(int pow, int caster); -int torment_monsters(int x, int y, int pow, int caster); +int torment_monsters(coord_def where, int pow, int caster); bool forget_inventory(bool quiet = false); bool vitrify_area(int radius); -- cgit v1.2.3-54-g00ecf