From 7326a3ea7aeaf078d394cbb7f49943a1c9170c1b Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Tue, 30 Sep 2014 19:20:38 -0400 Subject: [PATCH] Send the right person's name --- zone/client_packet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index a68de63ba..2ef62c3d3 100644 --- a/zone/client_packet.cpp +++ b/zone/client_packet.cpp @@ -10693,7 +10693,7 @@ void Client::Handle_OP_RaidCommand(const EQApplicationPacket *app) Client *i = entity_list.GetClientByName(ri->player_name); if (i){ if (IsRaidGrouped()){ - i->Message_StringID(0, ALREADY_IN_RAID, ri->player_name); //group failed, must invite members not in raid... + i->Message_StringID(0, ALREADY_IN_RAID, GetName()); //group failed, must invite members not in raid... return; } Raid *r = entity_list.GetRaidByClient(i);