proto: Remove parse_options_change.

This commit is contained in:
Loïc Hoguin 2010-06-04 12:08:10 +02:00
parent 529dc5cf08
commit 8aa3a9f2e0
2 changed files with 1 additions and 7 deletions

View File

@ -659,7 +659,7 @@ handle(16#0d04, CSocket, GID, _, Orig) ->
handle(16#0d07, _, GID, _, Orig) ->
log(GID, "options changes"),
[{options, Options}] = egs_proto:parse_options_change(Orig),
<< _:352, Options/bits >> = Orig,
User = egs_db:users_select(GID),
file:write_file(io_lib:format("save/~s/~b-character.options", [User#users.folder, User#users.charnumber]), Options);

View File

@ -131,12 +131,6 @@ parse_chat(_, Packet) ->
<< _:384, FromGID:32/unsigned-integer, Modifiers:128/bits, FromName:512/bits, Message/bits >> = Packet,
[{gid, FromGID}, {name, FromName}, {modifiers, Modifiers}, {message, Message}].
%% @doc Parse the options change command. Retrieve the options for saving.
parse_options_change(Packet) ->
<< _:352, Options/bits >> = Packet,
[{options, Options}].
%% @doc Center the camera on the player, if possible.
%% @todo Probably.