Fix the population count at the uni cube.
This commit is contained in:
parent
a7244a4310
commit
7f6ff8191a
@ -87,6 +87,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),
|
||||
State2 = State#state{slot=Slot},
|
||||
mnesia:dirty_update_counter(counters, population, 1),
|
||||
psu_game:char_load(User3, State2),
|
||||
{ok, egs_game, State2}.
|
||||
|
||||
|
@ -37,6 +37,7 @@ start_link(Port) ->
|
||||
on_exit(Pid) ->
|
||||
case egs_user_model:read({pid, Pid}) of
|
||||
{ok, User} ->
|
||||
mnesia:dirty_update_counter(counters, population, -1),
|
||||
case User#egs_user_model.partypid of
|
||||
undefined ->
|
||||
ignore;
|
||||
|
@ -96,7 +96,7 @@ init([]) ->
|
||||
{ok, undefined}.
|
||||
|
||||
handle_call(count, _From, State) ->
|
||||
Count = mnesia:table_info(?TABLE, size),
|
||||
Count = mnesia:dirty_update_counter(counters, population, 0),
|
||||
{reply, {ok, Count}, State};
|
||||
|
||||
handle_call({read, {pid, Pid}}, _From, State) ->
|
||||
|
Loading…
Reference in New Issue
Block a user