diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-09-08 17:57:19 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-09-08 17:57:19 +0000 |
commit | bf9918022ea2c4c2b1e52b7a9b15e69f5f9774e4 (patch) | |
tree | 59341f9b23e9b6412f9949202a3084957a764e83 /src/map/homunculus.c | |
parent | 486da709006e0385815f4d78726d26553da9ca91 (diff) | |
download | hercules-bf9918022ea2c4c2b1e52b7a9b15e69f5f9774e4.tar.gz hercules-bf9918022ea2c4c2b1e52b7a9b15e69f5f9774e4.tar.bz2 hercules-bf9918022ea2c4c2b1e52b7a9b15e69f5f9774e4.tar.xz hercules-bf9918022ea2c4c2b1e52b7a9b15e69f5f9774e4.zip |
Fixed bugreport:6587 removed unused parameters in several damage/heal functions from minions
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16760 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/homunculus.c')
-rw-r--r-- | src/map/homunculus.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/map/homunculus.c b/src/map/homunculus.c index 06b7343cd..46da045a4 100644 --- a/src/map/homunculus.c +++ b/src/map/homunculus.c @@ -81,8 +81,7 @@ int hom_class2mapid(int hom_class) } } -void merc_damage(struct homun_data *hd,struct block_list *src,int hp,int sp) -{ +void merc_damage(struct homun_data *hd) { clif_hominfo(hd->master,hd,0); } @@ -499,8 +498,7 @@ int merc_hom_decrease_intimacy(struct homun_data * hd, unsigned int value) return hd->homunculus.intimacy; } -void merc_hom_heal(struct homun_data *hd,int hp,int sp) -{ +void merc_hom_heal(struct homun_data *hd) { clif_hominfo(hd->master,hd,0); } |