diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-24 01:15:56 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-24 01:15:56 +0000 |
commit | 758e7e6a9a995ea27f0ec5461a588c2278f45ec4 (patch) | |
tree | 9c25929ef462cad6fcffa249a18a4040d7e33f78 /src/map/clif.c | |
parent | e806cbbaa63804c9f4ff2a82e20789d784a93b11 (diff) | |
download | hercules-758e7e6a9a995ea27f0ec5461a588c2278f45ec4.tar.gz hercules-758e7e6a9a995ea27f0ec5461a588c2278f45ec4.tar.bz2 hercules-758e7e6a9a995ea27f0ec5461a588c2278f45ec4.tar.xz hercules-758e7e6a9a995ea27f0ec5461a588c2278f45ec4.zip |
- Fixed the hotkey list sending to the client not displaying right away.
- Corrected the unit_id of NPC_EVILLAND (taken from jA)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11071 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-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 cede06761..9a3e5e7d9 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -8046,11 +8046,11 @@ void clif_parse_LoadEndAck(int fd,struct map_session_data *sd) int lv; sd->state.connect_new = 0; clif_skillinfoblock(sd); + clif_hotkeys_send(sd); clif_updatestatus(sd,SP_NEXTBASEEXP); clif_updatestatus(sd,SP_NEXTJOBEXP); clif_updatestatus(sd,SP_SKILLPOINT); clif_initialstatus(sd); - clif_hotkeys_send(sd); if (sd->sc.option&OPTION_FALCON) clif_status_load(&sd->bl, SI_FALCON, 1); |