From d82514ccb60eff612ed4638466bdffc5ddc66f1c Mon Sep 17 00:00:00 2001 From: PHIDIAS Date: Sun, 31 Dec 2023 01:44:49 +0900 Subject: [PATCH] Last Location print out (#265) * Update last-location.lua * Update last-location.lua --- modules/commands/last-location.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/commands/last-location.lua b/modules/commands/last-location.lua index 44763a17..f52ebe83 100644 --- a/modules/commands/last-location.lua +++ b/modules/commands/last-location.lua @@ -13,7 +13,7 @@ require 'config.expcore.command_general_parse' Commands.new_command('last-location', 'Sends you the last location of a player') :add_alias('location') :add_param('player', false, 'player') -:register(function(player, action_player) +:register(function(_, action_player) local action_player_name_color = format_chat_player_name(action_player) - player.print{'expcom-lastlocation.response', action_player_name_color, string.format('%.1f', action_player.position.x), string.format('%.1f', action_player.position.y)} + return Commands.success{'expcom-lastlocation.response', action_player_name_color, string.format('%.1f', action_player.position.x), string.format('%.1f', action_player.position.y)} end)