From 61d2fc167997b535ee211646aa90aa65c5a7ddc1 Mon Sep 17 00:00:00 2001 From: Sokomine Date: Sat, 10 Feb 2024 00:28:42 +0100 Subject: [PATCH] actually added the new files to init.lua --- init.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.lua b/init.lua index 45f870c..1d6893c 100644 --- a/init.lua +++ b/init.lua @@ -178,6 +178,12 @@ yl_speak_up.reload = function(modpath, log_entry) -- execute preconditions, actions and effects dofile(modpath .. "exec_eval_preconditions.lua") dofile(modpath .. "exec_actions.lua") + -- the formspecs for the actions: + dofile(modpath .. "fs/fs_action_npc_wants.lua") + dofile(modpath .. "fs/fs_action_npc_gives.lua") + dofile(modpath .. "fs/fs_action_text_input.lua") + dofile(modpath .. "fs/fs_action_evaluate.lua") + -- execute and apply effects: dofile(modpath .. "exec_apply_effects.lua") -- some helper functions for formatting text for a formspec talbe -- TODO dofile(modpath .. "print_as_table.lua")