From 1ad3bc44988f8e723684ad0fb8be4c4fd7244f1e Mon Sep 17 00:00:00 2001 From: Sokomine Date: Mon, 14 Nov 2022 21:03:58 +0100 Subject: [PATCH] fixed bug with missing yl_speak_up.load_quest prefix --- quest_api.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quest_api.lua b/quest_api.lua index 298d936..72c6afb 100644 --- a/quest_api.lua +++ b/quest_api.lua @@ -576,7 +576,7 @@ end -- get data of quest q_id yl_speak_up.get_quest = function(q_id) if(not(yl_speak_up.quests[q_id])) then - load_quest(q_id) + yl_speak_up.load_quest(q_id) end return yl_speak_up.quests[q_id] end