feat(Scripts/IcecrownCitadel): Allow game masters to skip boss checks (#15810)
This commit is contained in:
parent
3e4d5eca3a
commit
572a7ea60d
1 changed files with 6 additions and 1 deletions
|
|
@ -1445,8 +1445,13 @@ public:
|
|||
return false;
|
||||
}
|
||||
|
||||
bool CheckRequiredBosses(uint32 bossId, Player const* /*player*/) const override
|
||||
bool CheckRequiredBosses(uint32 bossId, Player const* player) const override
|
||||
{
|
||||
if (player->GetSession()->GetSecurity() >= SEC_MODERATOR)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
switch (bossId)
|
||||
{
|
||||
case DATA_THE_LICH_KING:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue