egs_quests_db: Fix crash when trying to load the set configuration file.

This commit is contained in:
Loïc Hoguin 2011-02-16 21:59:33 +01:00
parent 7e42b9b26a
commit 11a03f3a96

View File

@ -146,7 +146,7 @@ handle_call({set, QuestID, ZoneID, SetID}, _From, State=#state{sets=SetsCache})
case proplists:get_value({QuestID, ZoneID, SetID}, SetsCache) of
undefined ->
SetFilename = io_lib:format("priv/quests/~b/zone-~b/set_r~b.conf", [QuestID, ZoneID, SetID]),
Set = file:consult(SetFilename),
{ok, Set} = file:consult(SetFilename),
{reply, Set, State#state{sets=[{{QuestID, ZoneID, SetID}, Set}|SetsCache]}};
CachedSet ->
{reply, CachedSet, State}