From 61cd2fd64fb2457a3fc660ad0961011dfd2a3c5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sun, 13 Jun 2010 03:38:25 +0200 Subject: [PATCH] game: Force reloading the character when changing uni. --- src/egs_game.erl | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index a54e7e5..19155a0 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -538,9 +538,9 @@ handle(16#021d, CSocket, _, _, _) -> send_021e(CSocket); %% @doc Uni selection handler. -%% When selecting 'Your room', load first floor for now. -%% When selecting 'Reload', load first floor. -%% @todo Load 'Your room' correctly. +%% When selecting 'Your room', load a default room. +%% When selecting 'Reload', reload the character in the current lobby. +%% @todo There's probably an entryid given in the uni selection packet. handle(16#021f, CSocket, GID, _, Orig) -> << _:352, Uni:32/little-unsigned-integer, _/bits >> = Orig, @@ -556,7 +556,11 @@ handle(16#021f, CSocket, GID, _, Orig) -> log(GID, "uni selection (reload)"), send_0230(CSocket, GID), % 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; %% @doc Shortcut changes handler. Do nothing.