Correct a bad assumption about the 0f0a handler.

This commit is contained in:
Loïc Hoguin 2010-05-17 19:47:49 +02:00
parent 22b5dc6eb0
commit 86217c5d3b

View File

@ -404,10 +404,11 @@ handle(16#0d07, _, GID, _, Packet) ->
User = egs_db:users_select(GID), User = egs_db:users_select(GID),
file:write_file(io_lib:format("save/~s/~b-character.options", [User#users.folder, User#users.charnumber]), Options); file:write_file(io_lib:format("save/~s/~b-character.options", [User#users.folder, User#users.charnumber]), Options);
%% @doc Sit on chair? handler. Do nothing for now. %% @doc Lobby event handler. Do nothing for now.
%% Apparently used for elevator, sit on chairs, and more?
handle(16#0f0a, _, GID, _, _) -> handle(16#0f0a, _, GID, _, _) ->
log(GID, "sit on chair"); log(GID, "lobby event");
%% @doc Unknown command handler. Do nothing. %% @doc Unknown command handler. Do nothing.