diff options
-rw-r--r-- | src/map/pc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index a37c061b2..c4a2c4ef9 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -7223,6 +7223,9 @@ int pc_setcart(struct map_session_data *sd,int type) { if( pc_checkskill(sd,MC_PUSHCART) <= 0 ) return 1;// Push cart is required + if( type == 0 && pc_iscarton(sd) ) + status_change_end(&sd->bl,SC_GN_CARTBOOST,INVALID_TIMER); + #ifdef NEW_CARTS switch( type ) { |