diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-12-15 02:51:48 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2017-12-15 02:51:48 -0300 |
commit | ea0224e3bd8a4b081725c1eae5c597f8c7d74d7f (patch) | |
tree | 661bf8aaae71db69ae9e584bc76e13915cf24217 | |
parent | a36e804ae4639be40be17282e6c79fad9a769517 (diff) |
Core/Scripts: travis fixes
5 files changed, 6 insertions, 6 deletions
diff --git a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp index 33c4ffc7249..be7db4244ff 100644 --- a/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp +++ b/src/server/scripts/Northrend/CrusadersColiseum/TrialOfTheCrusader/boss_twin_valkyr.cpp @@ -704,7 +704,7 @@ class spell_bullet_controller : public AuraScript { PrepareAuraScript(spell_bullet_controller); - bool Validate(SpellInfo const* /*spellInfo*/) + bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_SUMMON_PERIODIC_LIGHT, SPELL_SUMMON_PERIODIC_DARK }); } diff --git a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp index 05e509c6987..1283ca3b29a 100644 --- a/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp +++ b/src/server/scripts/Northrend/Ulduar/Ulduar/boss_flame_leviathan.cpp @@ -1470,7 +1470,7 @@ class spell_overload_circuit : public AuraScript { PrepareAuraScript(spell_overload_circuit); - bool Validate(SpellInfo const* /*spellInfo*/) + bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_SYSTEMS_SHUTDOWN }); } @@ -1496,7 +1496,7 @@ class spell_tar_blaze : public AuraScript { PrepareAuraScript(spell_tar_blaze); - bool Validate(SpellInfo const* spellInfo) + bool Validate(SpellInfo const* spellInfo) override { return ValidateSpellInfo({ spellInfo->Effects[EFFECT_0].TriggerSpell }); } diff --git a/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp b/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp index 8fc66bef7e3..58ac4b353ec 100644 --- a/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp +++ b/src/server/scripts/Outland/TempestKeep/Eye/boss_alar.cpp @@ -592,7 +592,7 @@ class spell_alar_flame_quills : public AuraScript { PrepareAuraScript(spell_alar_flame_quills); - bool Validate(SpellInfo const* /*spellInfo*/) + bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo(flameQuillsSpells); } diff --git a/src/server/scripts/Spells/spell_generic.cpp b/src/server/scripts/Spells/spell_generic.cpp index fc24a7221ee..291e06218fd 100644 --- a/src/server/scripts/Spells/spell_generic.cpp +++ b/src/server/scripts/Spells/spell_generic.cpp @@ -227,7 +227,7 @@ class spell_gen_arena_drink : public AuraScript return GetCaster() && GetCaster()->GetTypeId() == TYPEID_PLAYER; } - void CalcPeriodic(AuraEffect const* aurEff, bool& isPeriodic, int32& amplitude) + void CalcPeriodic(AuraEffect const* aurEff, bool& isPeriodic, int32& /*amplitude*/) { // Get SPELL_AURA_MOD_POWER_REGEN aura from spell AuraEffect* regen = GetAura()->GetEffect(EFFECT_0); diff --git a/src/server/scripts/Spells/spell_item.cpp b/src/server/scripts/Spells/spell_item.cpp index 5399a91830e..5a643d8a383 100644 --- a/src/server/scripts/Spells/spell_item.cpp +++ b/src/server/scripts/Spells/spell_item.cpp @@ -117,7 +117,7 @@ class spell_item_absorb_eye_of_grillok : public AuraScript { PrepareAuraScript(spell_item_absorb_eye_of_grillok); - bool Validate(SpellInfo const* /*spellInfo*/) + bool Validate(SpellInfo const* /*spellInfo*/) override { return ValidateSpellInfo({ SPELL_EYE_OF_GRILLOK }); } |