summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-06-16 22:31:16 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-06-16 22:31:16 +0000
commit4f499fb621d773df8fde389b2b3a281b866b3213 (patch)
tree7b7fd6d445be0db0170c178e622cf39d78c5dab4 /src/map/pc.c
parent4b83969a25118fc099d72f043bf8e366ec478d36 (diff)
downloadhercules-4f499fb621d773df8fde389b2b3a281b866b3213.tar.gz
hercules-4f499fb621d773df8fde389b2b3a281b866b3213.tar.bz2
hercules-4f499fb621d773df8fde389b2b3a281b866b3213.tar.xz
hercules-4f499fb621d773df8fde389b2b3a281b866b3213.zip
- Fixed option value being reset'ed on login (fixes cart/peco/falcon being lost)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7217 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index d88c0cc32..5a57d69e2 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -634,6 +634,7 @@ int pc_authok(struct map_session_data *sd, int login_id2, time_t connect_until_t
pc_setinventorydata(sd);
pc_checkitem(sd);
+ status_change_init(&sd->bl);
if ((battle_config.atc_gmonly == 0 || pc_isGM(sd)) &&
(pc_isGM(sd) >= get_atcommand_level(AtCommand_Hide)))
sd->status.option &= (OPTION_MASK | OPTION_INVISIBLE);
@@ -643,7 +644,6 @@ int pc_authok(struct map_session_data *sd, int login_id2, time_t connect_until_t
sd->sc.option = sd->status.option; //This is the actual option used in battle.
//Set here because we need the inventory data for weapon sprite parsing.
status_set_viewdata(&sd->bl, sd->status.class_);
- status_change_init(&sd->bl);
unit_dataset(&sd->bl);
sd->guild_x = -1;