psu_proto: Pass the process state to send_0202.
This commit is contained in:
parent
38157769c2
commit
c565e398b7
@ -59,5 +59,6 @@ init(Socket) ->
|
||||
egs_game_server_exit_mon ! {link, self()},
|
||||
timer:send_interval(5000, {egs, keepalive}),
|
||||
TmpGID = 16#ff000000 + mnesia:dirty_update_counter(counters, tmpgid, 1),
|
||||
psu_proto:send_0202(Socket, TmpGID),
|
||||
egs_network:recv(<< >>, egs_login, #state{socket=Socket, gid=TmpGID}).
|
||||
State = #state{socket=Socket, gid=TmpGID},
|
||||
psu_proto:send_0202(State),
|
||||
egs_network:recv(<< >>, egs_login, State).
|
||||
|
@ -36,5 +36,6 @@ on_exit(_Pid) ->
|
||||
%% @doc Initialize the game state and start receiving messages.
|
||||
init(Socket) ->
|
||||
TmpGID = 16#ff000000 + mnesia:dirty_update_counter(counters, tmpgid, 1),
|
||||
psu_proto:send_0202(Socket, TmpGID),
|
||||
egs_network:recv(<< >>, egs_login, #state{socket=Socket, gid=TmpGID}).
|
||||
State = #state{socket=Socket, gid=TmpGID},
|
||||
psu_proto:send_0202(State),
|
||||
egs_network:recv(<< >>, egs_login, State).
|
||||
|
@ -1194,7 +1194,7 @@ send_0201(CharUser, State) ->
|
||||
|
||||
%% @doc Hello command. Sent when a client connects to the game or login server.
|
||||
%% @todo Can contain an error message if 0:1024 is setup similar to this: 0:32, 3:32/little, 0:48, Len:16/little, Error/binary, 0:Padding.
|
||||
send_0202(DestSocket, SessionID) ->
|
||||
send_0202(#state{socket=DestSocket, gid=SessionID}) ->
|
||||
packet_send(DestSocket, << 16#020203bf:32, 16#ffff:16, 0:272, SessionID:32/little, 0:1024 >>).
|
||||
|
||||
%% @doc Make the client load a new map.
|
||||
|
Loading…
Reference in New Issue
Block a user