egs_quests_db: Fix crash when trying to load the set configuration file.
This commit is contained in:
parent
7e42b9b26a
commit
11a03f3a96
@ -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}
|
||||
|
Loading…
Reference in New Issue
Block a user