summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-09-13 00:43:46 +0300
committerAndrei Karas <akaras@inbox.ru>2018-09-19 22:24:50 +0300
commit135ca4ad9ecd3ee0b7f548104d92d2a8d74c77a0 (patch)
tree6a6774d06fdd2f15ad0e9e538fd9bc274ea44237 /src/map/pc.c
parentc479ff1aafe1765633ebdc310f86c1d9035a6a16 (diff)
downloadhercules-135ca4ad9ecd3ee0b7f548104d92d2a8d74c77a0.tar.gz
hercules-135ca4ad9ecd3ee0b7f548104d92d2a8d74c77a0.tar.bz2
hercules-135ca4ad9ecd3ee0b7f548104d92d2a8d74c77a0.tar.xz
hercules-135ca4ad9ecd3ee0b7f548104d92d2a8d74c77a0.zip
Update cart packet for 2018-09-12 RE.
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c6
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);