Remove invalid item from file loader

This commit is contained in:
Cooldude2606
2026-06-26 14:30:35 +01:00
parent f4766cd20e
commit 147c586c4b
2 changed files with 4 additions and 1 deletions
+4
View File
@@ -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]) 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 } return Commands.status.success{ "exp-commands_home.home-get", surface.localised_name, floor_position.x, floor_position.y }
end) end)
return {
commands = commands,
}
-1
View File
@@ -11,7 +11,6 @@ require("modules/exp_scenario/commands/_types")
--- Commands with events --- Commands with events
add(require("modules/exp_scenario/commands/protected_entities")) add(require("modules/exp_scenario/commands/protected_entities"))
add(require("modules/exp_scenario/commands/protected_tags")) add(require("modules/exp_scenario/commands/protected_tags"))
add(require("modules/exp_scenario/commands/research"))
--- Commands --- Commands
require("modules/exp_scenario/commands/admin_chat") require("modules/exp_scenario/commands/admin_chat")