game: Silently ignore 0b05 in dispatch rather than in its own handler.
This commit is contained in:
parent
92f1d15729
commit
152da2848e
@ -425,13 +425,13 @@ close(CSocket, GID) ->
|
|||||||
ssl:close(CSocket).
|
ssl:close(CSocket).
|
||||||
|
|
||||||
%% @doc Dispatch the command to the right handler.
|
%% @doc Dispatch the command to the right handler.
|
||||||
|
%% Command 0b05 uses the channel for something else. Conflicts could occur. Better to just ignore it anyway.
|
||||||
|
|
||||||
dispatch(CSocket, GID, Version, Orig) ->
|
dispatch(CSocket, GID, Version, Orig) ->
|
||||||
<< _:32, Command:16/unsigned-integer, Channel:8/little-unsigned-integer, _/bits >> = Orig,
|
<< _:32, Command:16/unsigned-integer, Channel:8/little-unsigned-integer, _/bits >> = Orig,
|
||||||
case [Command, Channel] of
|
case [Command, Channel] of
|
||||||
[16#0b05, _] ->
|
[16#0b05, _] ->
|
||||||
% 0b05 uses the channel for something else, conflicts may occur
|
ignore;
|
||||||
handle(Command, CSocket, GID, Version, Orig);
|
|
||||||
[_, 1] ->
|
[_, 1] ->
|
||||||
broadcast(Command, GID, Orig);
|
broadcast(Command, GID, Orig);
|
||||||
_ ->
|
_ ->
|
||||||
@ -620,11 +620,6 @@ handle(16#0811, CSocket, GID, _, Orig) ->
|
|||||||
log(GID, "mission counter (~b,~b,~b,~b)", [Quest,MapType, MapNumber, MapEntry]),
|
log(GID, "mission counter (~b,~b,~b,~b)", [Quest,MapType, MapNumber, MapEntry]),
|
||||||
counter_load(CSocket, GID, Quest, MapType, MapNumber, MapEntry);
|
counter_load(CSocket, GID, Quest, MapType, MapNumber, MapEntry);
|
||||||
|
|
||||||
%% @doc Fragmented packet received. Just ignore it.
|
|
||||||
|
|
||||||
handle(16#0b05, _, _, _, _) ->
|
|
||||||
ignore;
|
|
||||||
|
|
||||||
%% @doc Start mission handler. Packet contains the selected mission number.
|
%% @doc Start mission handler. Packet contains the selected mission number.
|
||||||
%% @todo Load more than one mission.
|
%% @todo Load more than one mission.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user