diff --git a/src/egs_game.erl b/src/egs_game.erl index 50f4256..833b614 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -581,7 +581,7 @@ event({npc_shop_request, ShopID}, Client) -> %% @todo Not sure what are those hardcoded values. event({object_boss_gate_activate, ObjectID}, Client) -> psu_proto:send_1213(ObjectID, 0, Client), - psu_game:send_1215(2, 16#7008), + psu_proto:send_1215(2, 16#7008, Client), %% @todo Following sent after the warp? psu_proto:send_1213(37, 0, Client), %% @todo Why resend this? diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index a735a70..2df94d0 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -337,10 +337,6 @@ send_1016(PartyPos) -> GID = get(gid), send(<< 16#10160300:32, 16#ffff0000:32, 0:128, 16#00011300:32, GID:32/little, 0:64, PartyPos:32/little >>). -%% @todo Related to boss gates. -send_1215(A, B) -> - send(<< (header(16#1215))/binary, A:32/little, 0:16, B:16/little >>). - %% @todo Not sure yet. Value is probably a TargetID. Used in Airboard Rally. Replying with the same value starts the race. send_1216(Value) -> GID = get(gid), diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 97a0578..57e73fa 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1617,6 +1617,11 @@ send_1212(#client{socket=Socket, gid=DestGID}) -> send_1213(A, B, #client{socket=Socket, gid=DestGID}) -> packet_send(Socket, << 16#12130300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, A:32/little, B:32/little >>). +%% @todo Related to boss gates. +%% @todo This packet hasn't been reviewed at all yet. +send_1215(A, B, #client{socket=Socket, gid=DestGID}) -> + packet_send(Socket, << 16#12150300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, A:32/little, 0:16, B:16/little >>). + %% @doc Send the player's partner card. %% @todo Handle the LID and comment properly. send_1500(Character, #client{socket=Socket, gid=DestGID}) ->