From 0a3764fe8436eb0d13b8161749ce4b2be7b4ed3c Mon Sep 17 00:00:00 2001 From: Sokomine Date: Sat, 10 Feb 2024 19:52:18 +0100 Subject: [PATCH] adjusted the move of api_quest_steps.lua in init.lua and editor/ --- editor/edit_mode.lua | 2 +- init.lua | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/editor/edit_mode.lua b/editor/edit_mode.lua index ae4e158..5063e27 100644 --- a/editor/edit_mode.lua +++ b/editor/edit_mode.lua @@ -170,7 +170,7 @@ yl_speak_up.add_to_command_help_text = yl_speak_up.add_to_command_help_text.. -- GUI for adding/editing quests dofile(modpath .. "fs/fs_manage_quests.lua") -- -- GUI for adding/editing quest steps for the quests --- dofile(modpath .. "api/api_quest_steps.lua") + dofile(modpath .. "api/api_quest_steps.lua") dofile(modpath .. "fs/fs_manage_quest_steps.lua") -- used by the above dofile(modpath .. "fs/fs_add_quest_steps.lua") diff --git a/init.lua b/init.lua index f70d884..a8c6ea7 100644 --- a/init.lua +++ b/init.lua @@ -236,8 +236,8 @@ yl_speak_up.reload = function(modpath, log_entry) dofile(modpath .. "quest_api.lua") -- -- GUI for adding/editing quests -- TODO dofile(modpath .. "fs/fs_manage_quests.lua") - -- GUI for adding/editing quest steps for the quests - dofile(modpath .. "api/api_quest_steps.lua") +-- -- GUI for adding/editing quest steps for the quests +-- TODO dofile(modpath .. "api/api_quest_steps.lua") -- TODO dofile(modpath .. "fs/fs_manage_quest_steps.lua") -- -- used by the above -- TODO dofile(modpath .. "fs/fs_add_quest_steps.lua")