psu_proto: Move send_1501 to psu_proto without reviewing it.

This commit is contained in:
Loïc Hoguin 2011-02-26 22:58:23 +01:00
parent 87c256edba
commit 8c95aab709
2 changed files with 6 additions and 6 deletions

View File

@ -34,7 +34,7 @@ char_load(User, Client) ->
psu_proto:send_0210(Client),
psu_proto:send_0222(User#users.uni, Client),
psu_proto:send_1500(User#users.character, Client),
send_1501(),
psu_proto:send_1501(Client),
psu_proto:send_1512(Client),
%% 0303
psu_proto:send_1602(Client),
@ -346,8 +346,3 @@ send_1309() ->
send_1332() ->
{ok, << _Size:32, Packet/bits >>} = file:read_file("p/packet1332.bin"),
send(Packet).
%% @todo Send an empty partner card list.
send_1501() ->
GID = get(gid),
send(<< 16#15010300:32, 16#ffff:16, 0:144, 16#00011300:32, GID:32/little, 0:96 >>).

View File

@ -1638,6 +1638,11 @@ send_1500(Character, #client{socket=Socket, gid=DestGID}) ->
Name/binary, RaceBin:8, GenderBin:8, ClassBin:8, VoiceType:8, VoicePitch:8, 0:24,
DestGID:32/little, 0:224, Comment/binary, 1, 4, 1, Slot, 0:64 >>).
%% @todo Send an empty partner card list.
%% @todo This packet hasn't been reviewed at all yet.
send_1501(#client{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#15010300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:96 >>).
%% @todo Send an empty blacklist.
%% @todo This packet hasn't been reviewed at all yet.
send_1512(#client{socket=Socket, gid=DestGID}) ->