From e0635900944b6648e35343a36fb5fd563dabf7cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sun, 27 Jun 2010 20:03:01 +0200 Subject: [PATCH] game: Use pattern match instead of many lines of binding variables in send_0201. --- src/egs_game.erl | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index 749213e..1f2dac8 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -968,12 +968,7 @@ send_0200(CSocket, GID, ZoneType) -> %% @todo Figure out what the other things are. send_0201(CSocket, GID, User, Char) -> - QuestID = User#users.questid, - ZoneID = User#users.zoneid, - MapID = User#users.mapid, - EntryID = User#users.entryid, - CharGID = User#users.gid, - CharLID = User#users.lid, + #users{gid=CharGID, lid=CharLID, questid=QuestID, zoneid=ZoneID, mapid=MapID, entryid=EntryID} = User, {ok, File} = file:read_file("p/packet0201.bin"), << _:96, A:32/bits, _:96, B:32/bits, _:256, D:32/bits, _:2656, After/bits >> = File, Packet = << 16#02010300:32, 0:32, A/binary, CharGID:32/little-unsigned-integer, 0:64, B/binary, GID:32/little-unsigned-integer,