Fix issue with raidMakeLeader packets

This commit is contained in:
Michael Cook (mackal)
2014-10-16 19:20:53 -04:00
parent f805ddf319
commit 9c72533264
5 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -1326,7 +1326,7 @@ namespace SoF
strn0cpy(outmotd->motd, inmotd->motd, strlen(inmotd->motd) + 1);
dest->FastQueuePacket(&outapp);
}
else if (raid_gen->action == 14)
else if (raid_gen->action == 14 || raid_gen->action == 30)
{
RaidLeadershipUpdate_Struct *inlaa = (RaidLeadershipUpdate_Struct *)__emu_buffer;
EQApplicationPacket *outapp = new EQApplicationPacket(OP_RaidUpdate, sizeof(structs::RaidLeadershipUpdate_Struct));