egs_login_server: Remove the unused on_exit/1.
This commit is contained in:
parent
3280e79743
commit
344c534812
@ -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/>.
|
||||||
|
|
||||||
-module(egs_login_server).
|
-module(egs_login_server).
|
||||||
-export([start_link/1, on_exit/1, init/1]).
|
-export([start_link/1, init/1]).
|
||||||
|
|
||||||
-include("include/records.hrl").
|
-include("include/records.hrl").
|
||||||
|
|
||||||
@ -28,11 +28,6 @@ start_link(Port) ->
|
|||||||
Pid = spawn(egs_network, listen, [Port, ?MODULE]),
|
Pid = spawn(egs_network, listen, [Port, ?MODULE]),
|
||||||
{ok, Pid}.
|
{ok, Pid}.
|
||||||
|
|
||||||
%% @spec on_exit(Pid) -> ok
|
|
||||||
%% @doc Nothing to do for the login server.
|
|
||||||
on_exit(_Pid) ->
|
|
||||||
ok.
|
|
||||||
|
|
||||||
%% @doc Initialize the game state and start receiving messages.
|
%% @doc Initialize the game state and start receiving messages.
|
||||||
init(Socket) ->
|
init(Socket) ->
|
||||||
State = #state{socket=Socket, gid=egs_accounts:tmp_gid()},
|
State = #state{socket=Socket, gid=egs_accounts:tmp_gid()},
|
||||||
|
Loading…
Reference in New Issue
Block a user