From 147c586c4b635f6a1dc6a4829ebf131dd720b2de Mon Sep 17 00:00:00 2001 From: Cooldude2606 <25043174+Cooldude2606@users.noreply.github.com> Date: Fri, 26 Jun 2026 14:30:35 +0100 Subject: [PATCH] Remove invalid item from file loader --- exp_scenario/module/commands/home.lua | 4 ++++ exp_scenario/module/control.lua | 1 - 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/exp_scenario/module/commands/home.lua b/exp_scenario/module/commands/home.lua index 42ca6538..fb201fa0 100644 --- a/exp_scenario/module/commands/home.lua +++ b/exp_scenario/module/commands/home.lua @@ -120,3 +120,7 @@ commands.get_home = Commands.new("get-home", { "exp-commands_home.description-ge local _, floor_position = align_to_grid(player_home[1]) return Commands.status.success{ "exp-commands_home.home-get", surface.localised_name, floor_position.x, floor_position.y } end) + +return { + commands = commands, +} \ No newline at end of file diff --git a/exp_scenario/module/control.lua b/exp_scenario/module/control.lua index 56f78abe..ad7066b6 100644 --- a/exp_scenario/module/control.lua +++ b/exp_scenario/module/control.lua @@ -11,7 +11,6 @@ require("modules/exp_scenario/commands/_types") --- Commands with events add(require("modules/exp_scenario/commands/protected_entities")) add(require("modules/exp_scenario/commands/protected_tags")) -add(require("modules/exp_scenario/commands/research")) --- Commands require("modules/exp_scenario/commands/admin_chat")