Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
Scripts/BoT: fixed linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
Ovahlord committed Dec 19, 2023
1 parent f951bf8 commit a9c5881
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,13 @@ enum SpawnGroups

struct EncounterDragonData
{
EncounterDragonData(uint32 dataType, uint32 encounterCreatureId) : DataType(dataType), EncounterCreatureId(encounterCreatureId) { }

uint32 DataType = 0;
uint32 EncounterCreatureId = 0;
};

static constexpr std::array<EncounterDragonData, 4> const DragonData =
static std::array<EncounterDragonData const, 4> DragonData =
{
EncounterDragonData(DATA_SLATE_DRAGON, NPC_SLATE_DRAGON_ENCOUNTER),
EncounterDragonData(DATA_NETHER_SCION, NPC_NETHER_SCION_ENCOUNTER),
Expand Down

0 comments on commit a9c5881

Please sign in to comment.