proto: Remove parse_platform_info.
This commit is contained in:
parent
1db610f42e
commit
f41935dae2
@ -98,8 +98,8 @@ process_handle(16#020d, CSocket, Version, Orig) ->
|
||||
%% @doc Platform information handler. Obtain the game version.
|
||||
|
||||
process_handle(16#080e, CSocket, _, Orig) ->
|
||||
[{version, RealVersion}] = egs_proto:parse_platform_info(Orig),
|
||||
?MODULE:process(CSocket, RealVersion);
|
||||
<< _:416, Version:32/little-unsigned-integer, _/bits >> = Orig,
|
||||
?MODULE:process(CSocket, Version);
|
||||
|
||||
%% @doc Unknown command handler. Do nothing.
|
||||
|
||||
|
@ -162,12 +162,6 @@ parse_options_change(Packet) ->
|
||||
<< _:352, Options/bits >> = Packet,
|
||||
[{options, Options}].
|
||||
|
||||
%% @doc Parse the platform information command. Retrieve the game version for later use.
|
||||
|
||||
parse_platform_info(Packet) ->
|
||||
<< _:416, Version:32/little-unsigned-integer, _/bits >> = Packet,
|
||||
[{version, Version}].
|
||||
|
||||
%% @doc Center the camera on the player, if possible.
|
||||
%% @todo Probably.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user