summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorshennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-12-13 04:10:54 +0000
committershennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec>2011-12-13 04:10:54 +0000
commit6b4bb61343f4c08e881228e569c95507e0250a1a (patch)
treeed11a0b19887e92c288ce3d39d5d6c0a3dd750c7 /src/map/pc.c
parent9b24ab2cffb38d283ea1c68c961507db0d86f7de (diff)
downloadhercules-6b4bb61343f4c08e881228e569c95507e0250a1a.tar.gz
hercules-6b4bb61343f4c08e881228e569c95507e0250a1a.tar.bz2
hercules-6b4bb61343f4c08e881228e569c95507e0250a1a.tar.xz
hercules-6b4bb61343f4c08e881228e569c95507e0250a1a.zip
added cool down saving, bugreport:3976
thanks to Epoque for his concept on how to handle the cool down data git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15085 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c6
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;