diff options
author | megamage <none@none> | 2009-01-25 16:35:14 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-01-25 16:35:14 -0600 |
commit | ef88b0445169b09528df6d0d1f2066fed5da79de (patch) | |
tree | 6f09f7523d960775d8ea0dc2d2a866a75a5e04da /src/game/GameObject.cpp | |
parent | 30f6b38941e907c20dbb68f514eaf1345082abd3 (diff) |
*Update to Mangos 7183.
--HG--
branch : trunk
Diffstat (limited to 'src/game/GameObject.cpp')
-rw-r--r-- | src/game/GameObject.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/GameObject.cpp b/src/game/GameObject.cpp index a888ba6ec5b..99fe5f725bc 100644 --- a/src/game/GameObject.cpp +++ b/src/game/GameObject.cpp @@ -360,8 +360,8 @@ void GameObject::Update(uint32 /*p_time*/) { //Unit *caster = owner ? owner : ok; - //caster->CastSpell(ok, goInfo->trap.spellId, true); CastSpell(ok, goInfo->trap.spellId); + //caster->CastSpell(ok, goInfo->trap.spellId, true, 0, 0, GetGUID()); m_cooldownTime = time(NULL) + 4; // 4 seconds if(NeedDespawn) @@ -411,7 +411,7 @@ void GameObject::Update(uint32 /*p_time*/) for (; it != end; it++) { Unit* owner = Unit::GetUnit(*this, uint64(*it)); - if (owner) owner->CastSpell(owner, spellId, false); + if (owner) owner->CastSpell(owner, spellId, false, 0, 0, GetGUID()); } m_unique_users.clear(); @@ -826,7 +826,7 @@ void GameObject::TriggeringLinkedGameObject( uint32 trapEntry, Unit* target) // found correct GO // FIXME: when GO casting will be implemented trap must cast spell to target if(trapGO) - target->CastSpell(target,trapSpell,true); + target->CastSpell(target,trapSpell,true, 0, 0, GetGUID()); } GameObject* GameObject::LookupFishingHoleAround(float range) |