game: Send an empty blacklist too.
This commit is contained in:
parent
df451b843b
commit
37a5a5a944
@ -194,7 +194,8 @@ char_select_load(CSocket, GID, Version, Number) ->
|
|||||||
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),
|
||||||
send_packet_1501(CSocket, GID),
|
send_packet_1501(CSocket, GID),
|
||||||
% 1512 0303
|
send_packet_1512(CSocket, GID),
|
||||||
|
% 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),
|
||||||
@ -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 >>,
|
Packet = << 16#15010300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:96 >>,
|
||||||
egs_proto:packet_send(CSocket, Packet).
|
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 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.
|
||||||
|
Loading…
Reference in New Issue
Block a user