diff options
author | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-24 12:28:53 +0000 |
---|---|---|
committer | rud0lp20 <rud0lp20@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-24 12:28:53 +0000 |
commit | 596ff2483da6c7f5d6279d8809708042975d4451 (patch) | |
tree | 86f9e9f421eced086581b4bbc9d56d1fc680afca /src/map/clif.c | |
parent | b35718cad265492d13e67c600855a8a45d5c1fbb (diff) | |
download | hercules-596ff2483da6c7f5d6279d8809708042975d4451.tar.gz hercules-596ff2483da6c7f5d6279d8809708042975d4451.tar.bz2 hercules-596ff2483da6c7f5d6279d8809708042975d4451.tar.xz hercules-596ff2483da6c7f5d6279d8809708042975d4451.zip |
Fixed bugreport:6302 where WUG Riding state is not save in char log out.
Follow up r16483 where I forgot to include the list of skills that can be used when riding a WUG.XD
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16491 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index dcb74304c..d9b95264d 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -9223,6 +9223,9 @@ void clif_parse_LoadEndAck(int fd,struct map_session_data *sd) if (sd->sc.option&OPTION_RIDING) clif_status_load(&sd->bl, SI_RIDING, 1); + if (sd->sc.option&OPTION_WUGRIDER) + clif_status_load(&sd->bl, SI_WUGRIDER, 1); + if(sd->status.manner < 0) sc_start(&sd->bl,SC_NOCHAT,100,0,0); |