diff options
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index e6ef6ff83..214cf81a7 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -955,7 +955,11 @@ bool pc_authok(struct map_session_data *sd, int login_id2, time_t expiration_tim strcpy(tmpstr, msg_txt(500)); // Actually, it's the night... clif_wis_message(sd->fd, wisp_server_name, tmpstr, strlen(tmpstr)+1); } - + /** + * Check if player have any cool downs on + **/ + skill_cooldown_load(sd); + // Request all registries (auth is considered completed whence they arrive) intif_request_registry(sd,7); return true; |