diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-02-03 23:26:00 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-02-03 23:26:00 +0000 |
commit | b317caf7a7de3b2a4a64613aee576fd595aaca14 (patch) | |
tree | 1f4ef799df9e0b4fc8d712ab9ba5cc376095e023 /src/map/clif.h | |
parent | 42817756b603d2dc76c1408d0a6f432673350bd7 (diff) | |
download | hercules-b317caf7a7de3b2a4a64613aee576fd595aaca14.tar.gz hercules-b317caf7a7de3b2a4a64613aee576fd595aaca14.tar.bz2 hercules-b317caf7a7de3b2a4a64613aee576fd595aaca14.tar.xz hercules-b317caf7a7de3b2a4a64613aee576fd595aaca14.zip |
Fixes to Devotion (see topic:153345)
- removed totally fake Devotion packet from Marionette Control code (see r3934)
- fixed one devoted chars array management code bug which caused chars to be included in the array multiple times, producing various problems (also see r3934)
- the link will now re-display when coming into view range
- the link will no longer break if the devotee walks away, but instead, if he receives damage while being out of range of Devotion
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12171 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index 8a0cd10a9..fd6ac02c3 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -225,8 +225,7 @@ void clif_skill_delunit(struct skill_unit *unit); void clif_01ac(struct block_list* bl); int clif_autospell(struct map_session_data *sd,int skilllv); -int clif_devotion(struct map_session_data *sd); -int clif_marionette(struct block_list *src, struct block_list *target); +void clif_devotion(struct map_session_data *sd, struct map_session_data *tsd); int clif_spiritball(struct map_session_data *sd); int clif_combo_delay(struct block_list *src,int wait); int clif_bladestop(struct block_list *src,struct block_list *dst,int bool_); |