aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/Events
diff options
context:
space:
mode:
authorGolrag <golrag.jeremy@gmail.com>2015-04-18 11:11:06 +0200
committerGolrag <golrag.jeremy@gmail.com>2015-04-18 11:22:30 +0200
commitd999caee67d106add61a07df648ec5109784d37a (patch)
tree8d7f0a9c5f917cfe5288cdcebd5502bb77c25d38 /src/server/scripts/Events
parent99ef803f1d0976c03c0cd1c75126511b54d62513 (diff)
Core/AreaTrigger: Added 'bool entered' to OnTrigger
Diffstat (limited to 'src/server/scripts/Events')
-rw-r--r--src/server/scripts/Events/childrens_week.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/scripts/Events/childrens_week.cpp b/src/server/scripts/Events/childrens_week.cpp
index dd2f860c66c..dab0ad5b95a 100644
--- a/src/server/scripts/Events/childrens_week.cpp
+++ b/src/server/scripts/Events/childrens_week.cpp
@@ -920,7 +920,7 @@ class at_bring_your_orphan_to : public AreaTriggerScript
public:
at_bring_your_orphan_to() : AreaTriggerScript("at_bring_your_orphan_to") { }
- bool OnTrigger(Player* player, AreaTriggerEntry const* trigger) override
+ bool OnTrigger(Player* player, AreaTriggerEntry const* areaTrigger, bool /*entered*/) override
{
if (player->isDead() || !player->HasAura(SPELL_ORPHAN_OUT))
return false;
@@ -928,7 +928,7 @@ class at_bring_your_orphan_to : public AreaTriggerScript
uint32 questId = 0;
uint32 orphanId = 0;
- switch (trigger->ID)
+ switch (areaTrigger->ID)
{
case AT_DOWN_AT_THE_DOCKS:
questId = QUEST_DOWN_AT_THE_DOCKS;