aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game/GameObject.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game/GameObject.cpp b/src/game/GameObject.cpp
index 9a415f8c991..4729185d5ea 100644
--- a/src/game/GameObject.cpp
+++ b/src/game/GameObject.cpp
@@ -398,7 +398,9 @@ void GameObject::Update(uint32 /*p_time*/)
for (; it != end; it++)
{
Unit* owner = Unit::GetUnit(*this, uint64(*it));
- if (owner) owner->CastSpell(owner, spellId, false, 0, 0, GetGUID());
+ // For now we do not support go cast
+ //if (owner) owner->CastSpell(owner, spellId, false, 0, 0, GetGUID());
+ if (owner) owner->CastSpell(owner, spellId, false);
}
m_unique_users.clear();