game: Force reloading the character when changing uni.

This commit is contained in:
Loïc Hoguin 2010-06-13 03:38:25 +02:00
parent 8d119e1934
commit 61cd2fd64f

View File

@ -538,9 +538,9 @@ handle(16#021d, CSocket, _, _, _) ->
send_021e(CSocket); send_021e(CSocket);
%% @doc Uni selection handler. %% @doc Uni selection handler.
%% When selecting 'Your room', load first floor for now. %% When selecting 'Your room', load a default room.
%% When selecting 'Reload', load first floor. %% When selecting 'Reload', reload the character in the current lobby.
%% @todo Load 'Your room' correctly. %% @todo There's probably an entryid given in the uni selection packet.
handle(16#021f, CSocket, GID, _, Orig) -> handle(16#021f, CSocket, GID, _, Orig) ->
<< _:352, Uni:32/little-unsigned-integer, _/bits >> = Orig, << _:352, Uni:32/little-unsigned-integer, _/bits >> = Orig,
@ -556,7 +556,11 @@ handle(16#021f, CSocket, GID, _, Orig) ->
log(GID, "uni selection (reload)"), log(GID, "uni selection (reload)"),
send_0230(CSocket, GID), send_0230(CSocket, GID),
% 0220 % 0220
area_load(CSocket, GID, 1100000, 0, 1, 1) % force reloading the character and data files (hack)
User = egs_db:users_select(GID),
NewRow = User#users{questid=1120000, zoneid=undefined},
egs_db:users_insert(NewRow),
area_load(CSocket, GID, User#users.questid, User#users.zoneid, User#users.mapid, User#users.entryid)
end; end;
%% @doc Shortcut changes handler. Do nothing. %% @doc Shortcut changes handler. Do nothing.