summaryrefslogtreecommitdiff
path: root/src/map/clif.h
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-07-31 11:46:12 -0300
committershennetsind <ind@henn.et>2013-07-31 11:46:12 -0300
commit298f02f380d4de88129f0a296456d461cbc6505e (patch)
tree156d79a8237d6e5553a0249d4c8b8035f6c420e0 /src/map/clif.h
parent2d916eb9db83b67983f8135d2806f2c6fc726a2c (diff)
downloadhercules-298f02f380d4de88129f0a296456d461cbc6505e.tar.gz
hercules-298f02f380d4de88129f0a296456d461cbc6505e.tar.bz2
hercules-298f02f380d4de88129f0a296456d461cbc6505e.tar.xz
hercules-298f02f380d4de88129f0a296456d461cbc6505e.zip
Fixed Bug #7605
For packetver 2009 and below. http://hercules.ws/board/tracker/issue-7605-problem-with-old-client-versions/ Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/clif.h')
-rw-r--r--src/map/clif.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/map/clif.h b/src/map/clif.h
index f931e41e7..9bb5f25e7 100644
--- a/src/map/clif.h
+++ b/src/map/clif.h
@@ -523,7 +523,10 @@ struct clif_interface {
void (*skillunit_update) (struct block_list* bl);
int (*clearunit_delayed_sub) (int tid, unsigned int tick, int id, intptr_t data);
void (*set_unit_idle) (struct block_list* bl, struct map_session_data *tsd,enum send_target target);
- void (*spawn_unit) (struct block_list* bl,enum send_target target);
+ void (*spawn_unit) (struct block_list* bl, enum send_target target);
+#if PACKETVER < 20091103
+ void (*spawn_unit2) (struct block_list* bl, enum send_target target);
+#endif
void (*set_unit_walking) (struct block_list* bl, struct map_session_data *tsd,struct unit_data* ud, enum send_target target);
int (*calc_walkdelay) (struct block_list *bl,int delay, int type, int damage, int div_);
void (*getareachar_skillunit) (struct map_session_data *sd, struct skill_unit *unit);