diff options
author | Dennis Friis <peavey@inspircd.org> | 2009-05-25 01:15:55 +0200 |
---|---|---|
committer | Dennis Friis <peavey@inspircd.org> | 2009-05-25 05:34:53 +0200 |
commit | 531970eb617a2d2ff0e2b38666e02de23f8fae65 (patch) | |
tree | 9335e0b1690402d66d500504c2eb971b2096185e /src | |
parent | b921536d2c709bff905b6a89b2439e89c19c6cef (diff) | |
download | tmwa-531970eb617a2d2ff0e2b38666e02de23f8fae65.tar.gz tmwa-531970eb617a2d2ff0e2b38666e02de23f8fae65.tar.bz2 tmwa-531970eb617a2d2ff0e2b38666e02de23f8fae65.tar.xz tmwa-531970eb617a2d2ff0e2b38666e02de23f8fae65.zip |
Dont send account id on packet 0062 since its only meant for the player.
Diffstat (limited to 'src')
-rw-r--r-- | src/char/char.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/char/char.c b/src/char/char.c index 57a12dd..206db5e 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -1883,9 +1883,8 @@ int parse_tologin(int fd) { if (session[i] && (sd = session[i]->session_data)) { if (sd->account_id == acc) { WBUFW(i,0) = 0x62; - WBUFL(i,2) = acc; - WBUFB(i,6) = status; - WFIFOSET(i, 7); + WBUFL(i,2) = status; + WFIFOSET(i,3); break; } } |