From 130444d893241eddd417a6710f3dec417f1c7df0 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Fri, 10 Jun 2022 14:10:53 -0400 Subject: [PATCH] add item xxxxx show to who was added item Port From (https://github.com/TrinityCore/TrinityCore/commit/e799c4e00334db014217a85af8765a2859dc47f9) --- Source/Game/Chat/Commands/MiscCommands.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Game/Chat/Commands/MiscCommands.cs b/Source/Game/Chat/Commands/MiscCommands.cs index 1dcd2b5c1..3404a1c2d 100644 --- a/Source/Game/Chat/Commands/MiscCommands.cs +++ b/Source/Game/Chat/Commands/MiscCommands.cs @@ -175,6 +175,7 @@ namespace Game.Chat if (count > 0 && item) { player.SendNewItem(item, (uint)count, false, true); + handler.SendSysMessage(CypherStrings.Additem, itemId, count, handler.GetNameLink(playerTarget)); if (player != playerTarget) playerTarget.SendNewItem(item, (uint)count, true, false); }