diff options
author | Shauren <shauren.trinity@gmail.com> | 2021-04-12 12:24:28 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-04-12 12:24:28 +0200 |
commit | e858dd16ef132ab9af8f15e1300b7b95466ed977 (patch) | |
tree | 1e1f00e0122cb685cc355a895f2f28eda780a8c6 | |
parent | 8b93fc57211eaf47a12772d2b620453dfd21070a (diff) |
Core: Fix linking with gcc 8.3
-rw-r--r-- | src/server/scripts/Spells/spell_shaman.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_shaman.cpp b/src/server/scripts/Spells/spell_shaman.cpp index adef5e55ed6..09b3e0b40ad 100644 --- a/src/server/scripts/Spells/spell_shaman.cpp +++ b/src/server/scripts/Spells/spell_shaman.cpp @@ -490,7 +490,7 @@ class spell_sha_flametongue_weapon_aura : public AuraScript class spell_sha_healing_rain_aura : public AuraScript { public: - static constexpr const char ScriptName[] = "spell_sha_healing_rain"; + static constexpr char const ScriptName[] = "spell_sha_healing_rain"; void SetVisualDummy(TempSummon* summon) { @@ -521,6 +521,7 @@ private: ObjectGuid _visualDummy; float _x = 0.0f, _y = 0.0f, _z = 0.0f; }; +constexpr char const spell_sha_healing_rain_aura::ScriptName[]; // 73920 - Healing Rain class spell_sha_healing_rain : public SpellScript |