summaryrefslogtreecommitdiff
path: root/src/map/irc.c
diff options
context:
space:
mode:
authorValaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-02-10 00:09:29 +0000
committerValaris <Valaris@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-02-10 00:09:29 +0000
commit02970d7f1eb4e67ad850d140ff9acebc63d31036 (patch)
treefc0ec7800afdb0cbc0c14226cbe5c113f691b943 /src/map/irc.c
parent1ad8c0860982f9f7e01afffcd703a919b7e186c7 (diff)
downloadhercules-02970d7f1eb4e67ad850d140ff9acebc63d31036.tar.gz
hercules-02970d7f1eb4e67ad850d140ff9acebc63d31036.tar.bz2
hercules-02970d7f1eb4e67ad850d140ff9acebc63d31036.tar.xz
hercules-02970d7f1eb4e67ad850d140ff9acebc63d31036.zip
* Removed the conf sql code for now. Maybe will continue later with that project.
Lowered the irc keepalive timer, and added some checks for use_irc that should have been there. Added a return line \n to the beginning of the title screen. [Valaris] git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5241 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/irc.c')
-rw-r--r--src/map/irc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/irc.c b/src/map/irc.c
index 5bc0dd633..5772655be 100644
--- a/src/map/irc.c
+++ b/src/map/irc.c
@@ -149,7 +149,7 @@ int irc_keepalive_timer(int tid, unsigned int tick, int id, int data)
sprintf(send_string,"PRIVMSG %s : ", irc_nick);
irc_send(send_string);
- add_timer(gettick() + 45000, irc_keepalive_timer, 0, 0);
+ add_timer(gettick() + 30000, irc_keepalive_timer, 0, 0);
return 0;
}
@@ -270,6 +270,6 @@ void do_init_irc(void)
add_timer_func_list(irc_connect_timer, "irc_connect_timer");
add_timer_func_list(irc_keepalive_timer, "irc_keepalive_timer");
- add_timer(gettick() + 45000, irc_keepalive_timer, 0, 0);
+ add_timer(gettick() + 30000, irc_keepalive_timer, 0, 0);
}