mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 10:26:28 +01:00
Core/Scripts: Fixed build of boss_* scripts
This commit is contained in:
@@ -140,8 +140,8 @@ public:
|
||||
MovePoint = urand(0, 5);
|
||||
PointData = GetMoveData();
|
||||
SummonWhelpCount = 0;
|
||||
triggerGUID = 0;
|
||||
tankGUID = 0;
|
||||
triggerGUID.Clear();
|
||||
tankGUID.Clear();
|
||||
IsMoving = false;
|
||||
}
|
||||
|
||||
@@ -474,8 +474,8 @@ public:
|
||||
uint8 Phase;
|
||||
uint8 MovePoint;
|
||||
uint8 SummonWhelpCount;
|
||||
uint64 triggerGUID;
|
||||
uint64 tankGUID;
|
||||
ObjectGuid triggerGUID;
|
||||
ObjectGuid tankGUID;
|
||||
bool IsMoving;
|
||||
};
|
||||
|
||||
|
||||
@@ -95,12 +95,12 @@ class boss_ossirian : public CreatureScript
|
||||
void Initialize()
|
||||
{
|
||||
CrystalIterator = 0;
|
||||
TriggerGUID = 0;
|
||||
CrystalGUID = 0;
|
||||
TriggerGUID.Clear();
|
||||
CrystalGUID.Clear();
|
||||
}
|
||||
|
||||
uint64 TriggerGUID;
|
||||
uint64 CrystalGUID;
|
||||
ObjectGuid TriggerGUID;
|
||||
ObjectGuid CrystalGUID;
|
||||
uint8 CrystalIterator;
|
||||
bool SaidIntro;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user