diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-11 09:31:32 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-11 09:31:32 +0000 |
commit | 044ca381f50daa43b09fad43c9a671c276fc2f2f (patch) | |
tree | 77a59efa67e8a5c4375f8f8a1165fe3e37beb5bb /src/char/inter.c | |
parent | 222c9602a0802e12810af0bdbc09a186154f8b96 (diff) | |
download | hercules-044ca381f50daa43b09fad43c9a671c276fc2f2f.tar.gz hercules-044ca381f50daa43b09fad43c9a671c276fc2f2f.tar.bz2 hercules-044ca381f50daa43b09fad43c9a671c276fc2f2f.tar.xz hercules-044ca381f50daa43b09fad43c9a671c276fc2f2f.zip |
The max_account_id packetver detection mechanism will never cause any connection problems ever again. (bugreport:388)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12563 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char/inter.c')
-rw-r--r-- | src/char/inter.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/char/inter.c b/src/char/inter.c index 6c4b1e3e2..c987ce8f2 100644 --- a/src/char/inter.c +++ b/src/char/inter.c @@ -294,17 +294,6 @@ int inter_mapif_init(int fd) { //-------------------------------------------------------- // sended packets to map-server -//Sends the current max account/char id to map server [Skotlex] -void mapif_send_maxid(int account_id, int char_id) -{ - unsigned char buf[12]; - - WBUFW(buf,0) = 0x2b07; - WBUFL(buf,2) = account_id; - WBUFL(buf,6) = char_id; - mapif_sendall(buf, 10); -} - // GMメッセージ送信 int mapif_GMmessage(unsigned char *mes, int len, unsigned long color, int sfd) { unsigned char buf[2048]; |