egs_char_select: Save the character slot in the state for later use.
This commit is contained in:
parent
c7eae9256e
commit
641371fe4b
@ -18,7 +18,7 @@
|
|||||||
%% along with EGS. If not, see <http://www.gnu.org/licenses/>.
|
%% along with EGS. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
%% @doc Per-process state used by the various EGS modules.
|
%% @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.
|
%% @doc Table containing counters current values.
|
||||||
-record(counters, {name, id}).
|
-record(counters, {name, id}).
|
||||||
|
@ -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}}),
|
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),
|
{ok, User3} = egs_user_model:read(GID),
|
||||||
psu_game:char_load(User3),
|
psu_game:char_load(User3),
|
||||||
{ok, egs_game, State}.
|
{ok, egs_game, State#state{slot=Slot}}.
|
||||||
|
|
||||||
%% Internal.
|
%% Internal.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user