diff options
author | Haru <haru@dotalux.com> | 2018-09-23 15:55:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-23 15:55:01 +0200 |
commit | 211df88ef832810792da9e76e9beb3bb6fe45103 (patch) | |
tree | 732db250b0b6858f6cc60b671318bd3c66ae1e25 /src/map/pc.c | |
parent | f14bb88b2c0d95fd7c1b69db9d367b8a74cfb285 (diff) | |
parent | bb5897b1d3323e8e9d2fd0fd45e2dd41679e9d30 (diff) | |
download | hercules-211df88ef832810792da9e76e9beb3bb6fe45103.tar.gz hercules-211df88ef832810792da9e76e9beb3bb6fe45103.tar.bz2 hercules-211df88ef832810792da9e76e9beb3bb6fe45103.tar.xz hercules-211df88ef832810792da9e76e9beb3bb6fe45103.zip |
Merge pull request #2199 from 4144/updatepackets
Update packets up to 2018-09-19
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index be28f8dad..961dda9f5 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -2075,7 +2075,7 @@ static int pc_disguise(struct map_session_data *sd, int class) clif->spawn(&sd->bl); if (class == sd->status.class && pc_iscarton(sd)) { //It seems the cart info is lost on undisguise. - clif->cartlist(sd); + clif->cartList(sd); clif->updatestatus(sd,SP_CARTINFO); } if (sd->chat_id != 0) { @@ -9198,7 +9198,7 @@ static int pc_setoption(struct map_session_data *sd, int type) #ifndef NEW_CARTS if( type&OPTION_CART && !( p_type&OPTION_CART ) ) { //Cart On - clif->cartlist(sd); + clif->cartList(sd); clif->updatestatus(sd, SP_CARTINFO); if(pc->checkskill(sd, MC_PUSHCART) < 10) status_calc_pc(sd,SCO_NONE); //Apply speed penalty. @@ -9305,7 +9305,7 @@ static int pc_setcart(struct map_session_data *sd, int type) break; default:/* everything else is an allowed ID so we can move on */ if( !sd->sc.data[SC_PUSH_CART] ) /* first time, so fill cart data */ - clif->cartlist(sd); + clif->cartList(sd); clif->updatestatus(sd, SP_CARTINFO); sc_start(NULL,&sd->bl, SC_PUSH_CART, 100, type, 0); clif->sc_load(&sd->bl, sd->bl.id, AREA, SI_ON_PUSH_CART, type, 0, 0); |