diff options
author | John Holiver <none@none> | 2010-07-28 12:58:45 -0300 |
---|---|---|
committer | John Holiver <none@none> | 2010-07-28 12:58:45 -0300 |
commit | f7a65d6e83696b5765ad43dde25146ff4f03502c (patch) | |
tree | 5d8279f70acd246cad5639ee696fd28ce5391297 /src | |
parent | 311e8ddf663519895d61510b7ea20df48c0d8f22 (diff) |
Fix Sartharion adds loot farming.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Northrend/ObsidianSanctum/boss_sartharion.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/server/scripts/Northrend/ObsidianSanctum/boss_sartharion.cpp b/src/server/scripts/Northrend/ObsidianSanctum/boss_sartharion.cpp index 65d870afc0d..2ba09a875f7 100644 --- a/src/server/scripts/Northrend/ObsidianSanctum/boss_sartharion.cpp +++ b/src/server/scripts/Northrend/ObsidianSanctum/boss_sartharion.cpp @@ -297,6 +297,7 @@ struct boss_sartharionAI : public ScriptedAI { pTenebron->Respawn(); pTenebron->GetMotionMaster()->MoveTargetedHome(); + pTenebron->SetLootRecipient(NULL); } } } @@ -314,6 +315,7 @@ struct boss_sartharionAI : public ScriptedAI { pShadron->Respawn(); pShadron->GetMotionMaster()->MoveTargetedHome(); + pShadron->SetLootRecipient(NULL); } } } @@ -331,6 +333,7 @@ struct boss_sartharionAI : public ScriptedAI { pVesperon->Respawn(); pVesperon->GetMotionMaster()->MoveTargetedHome(); + pVesperon->SetLootRecipient(NULL); } } } |