Messed up the commit history, so here is all the files rip, Credit to TrinityCore

This commit is contained in:
hondacrx
2023-09-16 08:42:35 -04:00
parent 87284bbded
commit f636ea225f
373 changed files with 158910 additions and 2170 deletions
+3 -3
View File
@@ -366,14 +366,14 @@ namespace Game.Maps
InitializeCombatResurrections(1, resInterval);
SendEncounterStart(1, 9, resInterval, resInterval);
instance.DoOnPlayers(player => player.AtStartOfEncounter());
instance.DoOnPlayers(player => player.AtStartOfEncounter(EncounterType.DungeonEncounter));
break;
}
case EncounterState.Fail:
ResetCombatResurrections();
SendEncounterEnd();
instance.DoOnPlayers(player => player.AtEndOfEncounter());
instance.DoOnPlayers(player => player.AtEndOfEncounter(EncounterType.DungeonEncounter));
break;
case EncounterState.Done:
ResetCombatResurrections();
@@ -385,7 +385,7 @@ namespace Game.Maps
SendBossKillCredit(dungeonEncounter.Id);
}
instance.DoOnPlayers(player => player.AtEndOfEncounter());
instance.DoOnPlayers(player => player.AtEndOfEncounter(EncounterType.DungeonEncounter));
break;
default:
break;