fix(DB/gameobject): Band-aid fix for Malygos platform (#2085)

* Fix (DB/gameobject): Band-aid fix for Malygos platform.  close https://github.com/azerothcore/azerothcore-wotlk/issues/1948

* Nexus Raid Platform no longer collapses on the first Saronite Bomb use
This commit is contained in:
Zabustak Narvorsky
2019-07-25 00:14:36 +03:00
committed by Poszer
parent 03864eea58
commit 2b490ea487
2 changed files with 5 additions and 1 deletions

View File

@@ -190,7 +190,7 @@ public:
if (GameObject* go = instance->GetGameObject(GO_PlatformGUID))
if (Creature* c = instance->GetCreature(NPC_MalygosGUID))
{
go->ModifyHealth(-1000000, c);
go->ModifyHealth(-6500000, c); // We have HP 6 million in the database... So we have to do at least that
go->EnableCollision(false);
}
break;