From 0353915b2032129e0f005818e5e8f2fef4d00d28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 26 May 2010 05:35:31 +0200 Subject: [PATCH] game: Fix a small conflict in packet dispatch. 0b05 ignores the channel and could sometimes send 1, disconnecting the player. --- src/egs_game.erl | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index 2ee1a24..a4be03e 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -348,8 +348,11 @@ close(CSocket, GID) -> dispatch(CSocket, GID, Version, Packet) -> << _:32, Command:16/unsigned-integer, Channel:8/little-unsigned-integer, _/bits >> = Packet, - case Channel of - 1 -> + case [Command, Channel] of + [16#0b05, _] -> + % 0b05 uses the channel for something else, conflicts may occur + handle(Command, CSocket, GID, Version, Packet); + [_, 1] -> broadcast(Command, GID, Packet); _ -> handle(Command, CSocket, GID, Version, Packet) @@ -367,7 +370,7 @@ broadcast(16#0503, GID, Packet) -> %% @doc Default broadcast handler. Dispatch the command to everyone. %% We clean up the command and use the real GID and LID of the user, disregarding what was sent and possibly tampered with. -%% Only a handful of commands are allowed to broadcast. An user tampering with it would gets disconnected instantly. +%% Only a handful of commands are allowed to broadcast. An user tampering with it would get disconnected instantly. %% @todo Don't query the user data everytime! Keep an User instead of a GID probably. broadcast(Command, GID, Packet)