From 3b2ed1c2422cb169fe4e4b085ad33d3859d5d3cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Mon, 28 Jun 2010 12:10:31 +0200 Subject: [PATCH] game: Remvoe send_spawn. --- src/egs_game.erl | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index 5a1957a..829ae7a 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -454,8 +454,9 @@ loop(SoFar) -> {psu_keepalive} -> egs_proto:send_keepalive(get(socket)), ?MODULE:loop(SoFar); - {psu_player_spawn, Spawn} -> - send_spawn(Spawn), + {psu_player_spawn, _Spawn} -> + % Should be something along the lines of 203 201 204 or something. + send_0233(egs_db:users_select_others_in_area(egs_db:users_select(get(gid)))), ?MODULE:loop(SoFar); {psu_player_unspawn, Spawn} -> send_0204(Spawn#users.gid, Spawn#users.lid, 5), @@ -1380,13 +1381,6 @@ send_1a07() -> send(<< (header(16#1a07))/binary, 16#085b5d0a:32, 16#3a200000:32, 0:32, 16#01010101:32, 16#01010101:32, 16#01010101:32, 16#01010101:32 >>). -%% @todo Figure out what the other things are and do it right. -%% @todo Temporarily send 233 until the correct process is figured out. -%% Should be something along the lines of 203 201 204. - -send_spawn(_) -> - send_0233(egs_db:users_select_others_in_area(egs_db:users_select(get(gid)))). - %% @doc Log message to the console. log(Message) ->