diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/pc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 24088ff61..22bccbb00 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -318,7 +318,9 @@ int pc_makesavestatus(struct map_session_data *sd) if(!battle_config.save_clothcolor) sd->status.clothes_color=0; - sd->status.option = sd->sc.option; //Since the option saved is in + //Only copy the Cart/Peco/Falcon options, the rest are handled via + //status change load/saving. [Skotlex] + sd->status.option = sd->sc.option&(OPTION_CART|OPTION_FALCON|OPTION_RIDING); if (sd->sc.count && sd->sc.data[SC_JAILED].timer != -1) { //When Jailed, do not move last point. |