diff options
author | shennetsind <ind@henn.et> | 2014-03-22 17:19:58 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2014-03-22 17:19:58 -0300 |
commit | ad354f5d15e1060ee9c8d88d3228123d6520e8e4 (patch) | |
tree | 66b8b87f7118ff4d248de7ec86099d313376d783 /src | |
parent | 2b4d6abbc5baddc2207e73f0b84c7e6c73e271a4 (diff) | |
download | hercules-ad354f5d15e1060ee9c8d88d3228123d6520e8e4.tar.gz hercules-ad354f5d15e1060ee9c8d88d3228123d6520e8e4.tar.bz2 hercules-ad354f5d15e1060ee9c8d88d3228123d6520e8e4.tar.xz hercules-ad354f5d15e1060ee9c8d88d3228123d6520e8e4.zip |
Fixed Bug 8103
Issue with dragon mounted icon not showing up after relog.
http://hercules.ws/board/tracker/issue-8103-riding-dragon-mount-icon-missing/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index d023455e3..e78c034cb 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -9403,7 +9403,7 @@ void clif_parse_LoadEndAck(int fd,struct map_session_data *sd) { if (sd->sc.option&OPTION_FALCON) clif->status_change(&sd->bl, SI_FALCON, 1, 0, 0, 0, 0); - if (sd->sc.option&OPTION_RIDING) + if (sd->sc.option&(OPTION_RIDING|OPTION_DRAGON)) clif->status_change(&sd->bl, SI_RIDING, 1, 0, 0, 0, 0); else if (sd->sc.option&OPTION_WUGRIDER) clif->status_change(&sd->bl, SI_WUGRIDER, 1, 0, 0, 0, 0); |