game: Ignore counter's mission selected command. Fix a @doc.

This commit is contained in:
Loïc Hoguin 2010-06-02 20:49:19 +02:00
parent 1eb5e76a0a
commit e6bc6ca32b

View File

@ -683,7 +683,7 @@ handle(16#0f0a, CSocket, GID, _, Orig) ->
egs_proto:packet_send(CSocket, Packet), egs_proto:packet_send(CSocket, Packet),
log(GID, "lobby event (can only chair so far)"); log(GID, "lobby event (can only chair so far)");
%% @doc Mission selection handler? Send a party information recap. %% @doc Party information recap request.
%% @todo Handle when the party already exists! And stop doing it wrong. %% @todo Handle when the party already exists! And stop doing it wrong.
handle(16#1705, CSocket, GID, _, _) -> handle(16#1705, CSocket, GID, _, _) ->
@ -694,6 +694,12 @@ handle(16#1705, CSocket, GID, _, _) ->
0:1536, 16#0100c800:32, 16#0601010a:32, 16#ffffffff:32, 0:32 >>, 0:1536, 16#0100c800:32, 16#0601010a:32, 16#ffffffff:32, 0:32 >>,
egs_proto:packet_send(CSocket, Packet); egs_proto:packet_send(CSocket, Packet);
%% @doc Mission selected handler. Send the currently selected mission.
%% @todo Probably need to dispatch that info to other party members in the same counter.
handle(16#1707, _, _, _, _) ->
ignore;
%% @doc Party settings request handler. Item distribution is random for now. %% @doc Party settings request handler. Item distribution is random for now.
%% @todo Handle correctly. %% @todo Handle correctly.