game: Send an empty blacklist too.

This commit is contained in:
Loïc Hoguin 2010-06-04 17:02:13 +02:00
parent df451b843b
commit 37a5a5a944

View File

@ -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.