Final lint fixes

This commit is contained in:
Cooldude2606
2026-06-26 15:40:53 +01:00
parent 8b3c437847
commit 7890540a3e
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -54,7 +54,7 @@ commands.home = Commands.new("home", { "exp-commands_home.description-home" })
--- Teleports you to your previous location on the current surface --- Teleports you to your previous location on the current surface
--- @class ExpCommand_Home.commands._return: ExpCommand --- @class ExpCommand_Home.commands._return: ExpCommand
commands._return = Commands.new("return", { "exp-commands_home.description-return" }) commands.home_return = Commands.new("return", { "exp-commands_home.description-return" })
:add_flags{ "character_only" } :add_flags{ "character_only" }
:register(function(player) :register(function(player)
local surface = player.surface local surface = player.surface
@@ -123,4 +123,4 @@ commands.get_home = Commands.new("get-home", { "exp-commands_home.description-ge
return { return {
commands = commands, commands = commands,
} }
+1 -1
View File
@@ -67,7 +67,7 @@ new_quick_action(addon_surface.commands.clear_ground_items)
new_quick_action(addon_surface.commands.clear_blueprints_surface) new_quick_action(addon_surface.commands.clear_blueprints_surface)
new_quick_action(addon_surface.commands.clear_blueprints) new_quick_action(addon_surface.commands.clear_blueprints)
new_quick_action(addon_home.commands.home) new_quick_action(addon_home.commands.home)
new_quick_action(addon_home.commands._return) new_quick_action(addon_home.commands.home_return)
new_quick_action(addon_home.commands.set_home) new_quick_action(addon_home.commands.set_home)
new_quick_action(addon_home.commands.get_home) new_quick_action(addon_home.commands.get_home)
new_quick_action(addon_vlayer.commands.vlayer) new_quick_action(addon_vlayer.commands.vlayer)