From e6bc6ca32b9060af6e2b812db3bb16ae39246162 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 2 Jun 2010 20:49:19 +0200 Subject: [PATCH] game: Ignore counter's mission selected command. Fix a @doc. --- src/egs_game.erl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index 197b4a4..39e8044 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -683,7 +683,7 @@ handle(16#0f0a, CSocket, GID, _, Orig) -> egs_proto:packet_send(CSocket, Packet), 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. 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 >>, 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. %% @todo Handle correctly.