From 37a5a5a94456e14a84e137507bcc7d6f1ba9379c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 4 Jun 2010 17:02:13 +0200 Subject: [PATCH] game: Send an empty blacklist too. --- src/egs_game.erl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index 59826ce..c0a8f16 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -194,7 +194,8 @@ char_select_load(CSocket, GID, Version, Number) -> egs_proto:send_universe_info(CSocket, GID), egs_proto:send_player_card(CSocket, GID, Char, Number), send_packet_1501(CSocket, GID), - % 1512 0303 + send_packet_1512(CSocket, GID), + % 0303 egs_proto:send_npc_info(CSocket, GID), % 021b lobby_load(CSocket, GID, 1100000, 0, 1, 1), @@ -896,6 +897,12 @@ send_packet_1501(CSocket, GID) -> Packet = << 16#15010300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:96 >>, egs_proto:packet_send(CSocket, Packet). +%% @todo Send an empty blacklist. + +send_packet_1512(CSocket, GID) -> + Packet = << 16#15120300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:46144 >>, + egs_proto:packet_send(CSocket, Packet). + %% @todo Figure out what the other things are and do it right. %% @todo Temporarily send 233 until the correct process is figured out. %% Should be something along the lines of 203 201 204.