fix(Core/BRD): Timer for tomb of seven (#7952)

This commit is contained in:
patou01
2021-09-20 22:30:57 +02:00
committed by GitHub
parent 0710be7865
commit 47bb5cbb43

View File

@@ -8,7 +8,8 @@
#include "InstanceScript.h"
#include "ScriptMgr.h"
#define TIMER_TOMBOFTHESEVEN 15000
#define TIMER_TOMBOFTHESEVEN 30000
#define TIMER_TOMB_START 5000
#define MAX_ENCOUNTER 6
enum Creatures
@@ -148,7 +149,7 @@ public:
BarAleCount = 0;
GhostKillCount = 0;
TombTimer = TIMER_TOMBOFTHESEVEN;
TombTimer = TIMER_TOMB_START;
TombEventCounter = 0;
OpenedCoofers = 0;
}
@@ -577,7 +578,7 @@ public:
}
GhostKillCount = 0;
TombEventCounter = 0;
TombTimer = TIMER_TOMBOFTHESEVEN;
TombTimer = TIMER_TOMB_START;
SetData(TYPE_TOMB_OF_SEVEN, NOT_STARTED);
}