summaryrefslogtreecommitdiff
path: root/src/common/plugins.c
diff options
context:
space:
mode:
authorFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-12-09 15:57:22 +0000
committerFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-12-09 15:57:22 +0000
commit91d42beda228772338cecadda47c7fd50217c60f (patch)
tree1544588bc5d896b581064e0182df75ef02c1f70d /src/common/plugins.c
parent8c1a525cdb55bd21309396d82d2d507adaebd794 (diff)
downloadhercules-91d42beda228772338cecadda47c7fd50217c60f.tar.gz
hercules-91d42beda228772338cecadda47c7fd50217c60f.tar.bz2
hercules-91d42beda228772338cecadda47c7fd50217c60f.tar.xz
hercules-91d42beda228772338cecadda47c7fd50217c60f.zip
- Reversed revision #9415 (messages with server_tick field being sent as soon as possible) since it didn't fix the client synchronization issue.
- clif_parse_TickSend is sent immediately so the client gets accurate "pings" Note: in Changelog, for my changes, if they're grouped together and in the same day I'm only gonna "sign" the bottom line. All unsigned lines are assumed to be from the same person of the previous line (below). (easier searches =P) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9443 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/common/plugins.c')
-rw-r--r--src/common/plugins.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/common/plugins.c b/src/common/plugins.c
index 9da12c35f..5951885a1 100644
--- a/src/common/plugins.c
+++ b/src/common/plugins.c
@@ -291,12 +291,6 @@ int plugins_config_read(const char *cfgName)
return 0;
}
-/// backward compatibillity function
-int plugin_WFIFOSET(int fd,int len)
-{
- return _WFIFOSET(fd,len,0);
-}
-
void plugins_init (void)
{
char *PLUGIN_CONF_FILENAME = "conf/plugin_athena.conf";
@@ -308,7 +302,7 @@ void plugins_init (void)
// networking
export_symbol (func_parse_table, 18);
export_symbol (RFIFOSKIP, 17);
- export_symbol (plugin_WFIFOSET, 16);
+ export_symbol (WFIFOSET, 16);
export_symbol (delete_session, 15);
export_symbol (session, 14);
export_symbol (&fd_max, 13);