diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-06-18 16:51:13 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2013-06-18 16:51:56 +0200 |
commit | 09eea66ee12a44295c0734cc55a1532440a11170 (patch) | |
tree | 7c9635e01bed764ed3151f76b547fb145f93a43e /src/server/scripts | |
parent | b6aadc6698875fb9a706483b3db9e524faf5e65b (diff) |
Core: Fix warnings
Diffstat (limited to 'src/server/scripts')
-rw-r--r-- | src/server/scripts/Northrend/zone_zuldrak.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Northrend/zone_zuldrak.cpp b/src/server/scripts/Northrend/zone_zuldrak.cpp index f506570888b..8fdcf807cb7 100644 --- a/src/server/scripts/Northrend/zone_zuldrak.cpp +++ b/src/server/scripts/Northrend/zone_zuldrak.cpp @@ -1669,7 +1669,7 @@ class go_finklesteins_cauldron : public GameObjectScript public: go_finklesteins_cauldron() : GameObjectScript("go_finklesteins_cauldron") { } - bool OnGossipHello(Player* player, GameObject* go) + bool OnGossipHello(Player* player, GameObject* /*go*/) { player->CastSpell(player, SPELL_POT_CHECK); return true; @@ -1720,7 +1720,7 @@ class spell_random_ingredient_aura : public SpellScriptLoader return true; } - void PeriodicTick(AuraEffect const* aurEff) + void PeriodicTick(AuraEffect const* /*aurEff*/) { switch (GetSpellInfo()->Id) { |