egs_char_select: Save the character slot in the state for later use.

This commit is contained in:
Loïc Hoguin 2010-10-09 01:04:03 +02:00
parent c7eae9256e
commit 641371fe4b
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
%% along with EGS. If not, see <http://www.gnu.org/licenses/>.
%% @doc Per-process state used by the various EGS modules.
-record(state, {socket, gid, lid=16#ffff, areanb=0}).
-record(state, {socket, gid, slot, lid=16#ffff, areanb=0}).
%% @doc Table containing counters current values.
-record(counters, {name, id}).

View File

@ -86,7 +86,7 @@ event({char_select_enter, Slot, _BackToPreviousField}, State=#state{gid=GID}) ->
egs_user_model:item_add(GID, 16#01010b00, #psu_striking_weapon_item_variables{current_pp=99, max_pp=100, element=#psu_element{type=3, percent=50}}),
{ok, User3} = egs_user_model:read(GID),
psu_game:char_load(User3),
{ok, egs_game, State}.
{ok, egs_game, State#state{slot=Slot}}.
%% Internal.