diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index 1c35d1e..06b4baa 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -282,10 +282,6 @@ build_item_constants(#psu_trap_item{max_quantity=MaxQuantity}) -> build_item_constants(#psu_special_item{}) -> << 0:160 >>. -%% @doc Send the trial start notification. -send_0c09() -> - send(<< (header(16#0c09))/binary, 0:64 >>). - %% @doc Send the character list for selection. %% @todo There's a few odd values blanked, also the last known location apparently. send_0d03(Data0, Data1, Data2, Data3) -> diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 2c815bc..ba0b308 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1465,6 +1465,11 @@ send_0c06(Pack, #client{socket=Socket}) -> send_0c08(#client{socket=Socket, gid=DestGID}) -> packet_send(Socket, << 16#0c080300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:96 >>). +%% @doc Send the trial start notification. +%% @todo This packet hasn't been reviewed at all yet. +send_0c09(#client{socket=Socket, gid=DestGID}) -> + packet_send(Socket, << 16#0c090300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:64, 0:64 >>). + %% @doc Send the counter's mission options (0 = invisible, 2 = disabled, 3 = available). send_0c10(Options, #client{socket=Socket, gid=DestGID, lid=DestLID}) -> Size = byte_size(Options),