diff options
Diffstat (limited to 'src/scripts/examples/example_misc.cpp')
-rw-r--r-- | src/scripts/examples/example_misc.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/scripts/examples/example_misc.cpp b/src/scripts/examples/example_misc.cpp index e26220bfbb3..3c96cc0bae7 100644 --- a/src/scripts/examples/example_misc.cpp +++ b/src/scripts/examples/example_misc.cpp @@ -29,20 +29,20 @@ enum eSay SAY_HI = -1999925 }; -bool AT_example_areatrigger(Player* pPlayer, const AreaTriggerEntry *pAt) +bool AT_example_areatrigger(Player* pPlayer, const AreaTriggerEntry * /*pAt*/) { DoScriptText(SAY_HI, pPlayer); return true; } extern void LoadDatabase(); -bool ItemUse_example_item(Player* pPlayer, Item* pItem, SpellCastTargets const& scTargets) +bool ItemUse_example_item(Player* /*pPlayer*/, Item* /*pItem*/, SpellCastTargets const& /*scTargets*/) { sScriptMgr.LoadDatabase(); return true; } -bool GOHello_example_go_teleporter(Player* pPlayer, GameObject* pGo) +bool GOHello_example_go_teleporter(Player* pPlayer, GameObject* /*pGo*/) { pPlayer->TeleportTo(0, 1807.07f, 336.105f, 70.3975f, 0.0f); return false; |