diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-03 19:59:48 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-03 19:59:48 +0000 |
commit | bb0a08a67c73be469c130567ec9e6c5b8a4a2963 (patch) | |
tree | dce696635219fd87cdc01fe6a04718a55b217f0f /src/login | |
parent | 695aa3dbc9810b7ad25f2eb4e1c3eb92ba6926f3 (diff) | |
download | hercules-bb0a08a67c73be469c130567ec9e6c5b8a4a2963.tar.gz hercules-bb0a08a67c73be469c130567ec9e6c5b8a4a2963.tar.bz2 hercules-bb0a08a67c73be469c130567ec9e6c5b8a4a2963.tar.xz hercules-bb0a08a67c73be469c130567ec9e6c5b8a4a2963.zip |
- Char-server SQL won't perform the reconnect cleanup routines when kick_on_disconnect is disabled.
- Renamed summons_inherit_effects to summons_trigger_autospells as the setting now only makes the attacks of the slaves trigger the autospells of the master (as it should be).
- Corrected code capping no_spawn_on_player to 50 when the max should be 100.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7459 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/login')
-rw-r--r-- | src/login/login.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/login/login.c b/src/login/login.c index a617c79d9..cf66d10ed 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -3789,7 +3789,6 @@ int login_config_read(const char *cfgName) { } else if(strcmpi(w1,"ip_sync_interval")==0) {
ip_sync_interval = 1000*60*atoi(w2); //w2 comes in minutes.
}
-
}
}
fclose(fp);
@@ -4166,7 +4165,6 @@ int do_init(int argc, char **argv) { add_timer_func_list(online_data_cleanup, "online_data_cleanup");
add_timer_interval(gettick() + 600*1000, online_data_cleanup, 0, 0, 600*1000); // every 10 minutes cleanup online account db.
-
if (ip_sync_interval) {
add_timer_func_list(sync_ip_addresses, "sync_ip_addresses");
|