From cb49bae53c83143cbe83835d6d3c6ee754d05187 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Tue, 30 Sep 2014 18:41:03 -0400 Subject: [PATCH] Fix already in raid message --- zone/client_packet.cpp | 2 +- zone/string_ids.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/zone/client_packet.cpp b/zone/client_packet.cpp index 340723385..a68de63ba 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, 5060); //group failed, must invite members not in raid... + i->Message_StringID(0, ALREADY_IN_RAID, ri->player_name); //group failed, must invite members not in raid... return; } Raid *r = entity_list.GetRaidByClient(i); diff --git a/zone/string_ids.h b/zone/string_ids.h index a443fabd9..56e1c4043 100644 --- a/zone/string_ids.h +++ b/zone/string_ids.h @@ -275,6 +275,7 @@ #define TOLD_NOT_ONLINE 5046 //%1 is not online at this time. #define PETITION_NO_DELETE 5053 //You do not have a petition in the queue. #define PETITION_DELETED 5054 //Your petition was successfully deleted. +#define ALREADY_IN_RAID 5060 //%1 is already in a raid. #define GAIN_RAIDEXP 5085 //You gained raid experience! #define DUNGEON_SEALED 5141 //The gateway to the dungeon is sealed off to you. Perhaps you would be able to enter if you needed to adventure there. #define ADVENTURE_COMPLETE 5147 //You received %1 points for successfully completing the adventure.