diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-10-06 11:54:45 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-10-06 11:54:45 +0000 |
commit | 6dda35a216e1f35278f4465ad5bc124ab113da36 (patch) | |
tree | 5bcb7dd9c97ba61d6bfaa55f87cc4a7369d25d01 /src/map | |
parent | e4f858b6882b73e3c82ba9e1964b12bf39dd18da (diff) | |
download | hercules-6dda35a216e1f35278f4465ad5bc124ab113da36.tar.gz hercules-6dda35a216e1f35278f4465ad5bc124ab113da36.tar.bz2 hercules-6dda35a216e1f35278f4465ad5bc124ab113da36.tar.xz hercules-6dda35a216e1f35278f4465ad5bc124ab113da36.zip |
voided out clif_blown as per Valaris' instruction.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13263 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/clif.c | 4 | ||||
-rw-r--r-- | src/map/clif.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 99eee9ffe..120db10f6 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -1325,11 +1325,11 @@ void clif_changemapserver(struct map_session_data* sd, unsigned short map_index, WFIFOSET(fd,packet_len(0x92)); } -int clif_blown(struct block_list *bl) +void clif_blown(struct block_list *bl) { //Aegis packets says fixpos, but it's unsure whether slide works better or not. // return clif_fixpos(bl); - return clif_slide(bl, bl->x, bl->y); + clif_slide(bl, bl->x, bl->y); } /*========================================== * diff --git a/src/map/clif.h b/src/map/clif.h index ee3222920..2dda4d1e1 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -118,7 +118,7 @@ int clif_walkok(struct map_session_data*); // self void clif_move(struct unit_data *ud); //area void clif_changemap(struct map_session_data*,short,int,int); //self void clif_changemapserver(struct map_session_data* sd, unsigned short map_index, int x, int y, uint32 ip, uint16 port); //self -int clif_blown(struct block_list *); // area +void clif_blown(struct block_list *); // area void clif_slide(struct block_list *,int,int); // area void clif_fixpos(struct block_list *); // area int clif_npcbuysell(struct map_session_data*,int); //self |