From dadd097f32a90a57498ca706841516cac607490c Mon Sep 17 00:00:00 2001 From: Alex <24834740+GreenXenith@users.noreply.github.com> Date: Tue, 11 Mar 2025 01:59:51 -0700 Subject: [PATCH] Echo DMs sent with /msg (#15887) --- builtin/game/chat.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/game/chat.lua b/builtin/game/chat.lua index 69c657194..64f14cc40 100644 --- a/builtin/game/chat.lua +++ b/builtin/game/chat.lua @@ -1275,7 +1275,7 @@ core.register_chatcommand("msg", { core.log("action", "DM from " .. name .. " to " .. sendto .. ": " .. message) core.chat_send_player(sendto, S("DM from @1: @2", name, message)) - return true, S("Message sent.") + return true, S("DM sent to @1: @2", sendto, message) end, })