game: Use pattern matching to simplify build_0233_contents.
This commit is contained in:
parent
cd30e60262
commit
f3d5b5f099
@ -1112,21 +1112,10 @@ build_0233_contents(Users) ->
|
|||||||
{ok, CharFile} = file:read_file(io_lib:format("save/~s/~b-character", [User#users.folder, User#users.charnumber])),
|
{ok, CharFile} = file:read_file(io_lib:format("save/~s/~b-character", [User#users.folder, User#users.charnumber])),
|
||||||
CharGID = User#users.gid,
|
CharGID = User#users.gid,
|
||||||
LID = User#users.lid,
|
LID = User#users.lid,
|
||||||
case User#users.coords of % TODO: temporary? undefined handling
|
% TODO: temporary? undefined handling
|
||||||
undefined ->
|
#users{direction=Direction, coords=Coords, questid=QuestID, zoneid=ZoneID, mapid=MapID, entryid=EntryID} = case User#users.coords of
|
||||||
Direction = << 0:32 >>,
|
undefined -> #users{direction= << 0:32 >>, coords= << 0:96 >>, questid=1100000, zoneid=0, mapid=1, entryid=0};
|
||||||
Coords = << 0:96 >>,
|
_ -> User
|
||||||
QuestID = 1100000,
|
|
||||||
ZoneID = 0,
|
|
||||||
MapID = 1,
|
|
||||||
EntryID = 0;
|
|
||||||
_ ->
|
|
||||||
Direction = User#users.direction,
|
|
||||||
Coords = User#users.coords,
|
|
||||||
QuestID = User#users.questid,
|
|
||||||
ZoneID = User#users.zoneid,
|
|
||||||
MapID = User#users.mapid,
|
|
||||||
EntryID = User#users.entryid
|
|
||||||
end,
|
end,
|
||||||
% @todo Temporary tweak for Sonic's Birthday event
|
% @todo Temporary tweak for Sonic's Birthday event
|
||||||
case calendar:universal_time() of
|
case calendar:universal_time() of
|
||||||
|
Loading…
Reference in New Issue
Block a user