game: Explicitly send an empty partner card list.

This commit is contained in:
Loïc Hoguin 2010-06-04 16:53:32 +02:00
parent 2c025532b7
commit df451b843b

View File

@ -193,7 +193,8 @@ char_select_load(CSocket, GID, Version, Number) ->
% 0210 % 0210
egs_proto:send_universe_info(CSocket, GID), egs_proto:send_universe_info(CSocket, GID),
egs_proto:send_player_card(CSocket, GID, Char, Number), egs_proto:send_player_card(CSocket, GID, Char, Number),
% 1501 1512 0303 send_packet_1501(CSocket, GID),
% 1512 0303
egs_proto:send_npc_info(CSocket, GID), egs_proto:send_npc_info(CSocket, GID),
% 021b % 021b
lobby_load(CSocket, GID, 1100000, 0, 1, 1), lobby_load(CSocket, GID, 1100000, 0, 1, 1),
@ -889,6 +890,12 @@ send_packet_1006(CSocket, GID, N) ->
Packet = << 16#10060300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, N:32/little-unsigned-integer >>, Packet = << 16#10060300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, N:32/little-unsigned-integer >>,
egs_proto:packet_send(CSocket, Packet). egs_proto:packet_send(CSocket, Packet).
%% @todo Send an empty partner card list.
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 Figure out what the other things are and do it right. %% @todo Figure out what the other things are and do it right.
%% @todo Temporarily send 233 until the correct process is figured out. %% @todo Temporarily send 233 until the correct process is figured out.
%% Should be something along the lines of 203 201 204. %% Should be something along the lines of 203 201 204.