game: Lobby ID shouldn't be allowed to be 0 yet, otherwise conflicts occur.

This commit is contained in:
Loïc Hoguin 2010-05-25 22:24:43 +02:00
parent 2a84dd529a
commit dd4bb5f520

View File

@ -84,7 +84,7 @@ process_handle(16#020d, CSocket, Version, Packet) ->
case User#users.auth of
Auth ->
log(GID, "good auth, proceed"),
LID = egs_db:next(lobby) rem 1024,
LID = 1 + egs_db:next(lobby) rem 1023,
Time = calendar:datetime_to_gregorian_seconds(calendar:universal_time()),
egs_db:users_insert(#users{gid=GID, pid=self(), socket=CSocket, auth=success, time=Time, folder=User#users.folder, lid=LID}),
egs_proto:send_flags(CSocket, GID),