aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/World
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/scripts/World')
-rw-r--r--src/server/scripts/World/mob_generic_creature.cpp3
-rw-r--r--src/server/scripts/World/npcs_special.cpp6
2 files changed, 5 insertions, 4 deletions
diff --git a/src/server/scripts/World/mob_generic_creature.cpp b/src/server/scripts/World/mob_generic_creature.cpp
index ca3b27140e4..e7a0aeb1770 100644
--- a/src/server/scripts/World/mob_generic_creature.cpp
+++ b/src/server/scripts/World/mob_generic_creature.cpp
@@ -19,6 +19,7 @@
#include "Map.h"
#include "PassiveAI.h"
#include "ScriptedCreature.h"
+#include "SpellInfo.h"
#include "SpellMgr.h"
class trigger_periodic : public CreatureScript
@@ -43,7 +44,7 @@ public:
if (timer <= diff)
{
if (spell)
- me->CastSpell(me, spell, true);
+ me->CastSpell(me, spell->Id, CastSpellExtraArgs(TRIGGERED_FULL_MASK).SetCastDifficulty(spell->Difficulty));
timer = interval;
}
else
diff --git a/src/server/scripts/World/npcs_special.cpp b/src/server/scripts/World/npcs_special.cpp
index cf4be0e3e3e..601f0d23421 100644
--- a/src/server/scripts/World/npcs_special.cpp
+++ b/src/server/scripts/World/npcs_special.cpp
@@ -468,10 +468,10 @@ public:
{
_scheduler.Schedule(Seconds(2), [this](TaskContext context)
{
- me->CastCustomSpell(SPELL_TORCH_TARGET_PICKER, SPELLVALUE_MAX_TARGETS, 1);
+ me->CastSpell(nullptr, SPELL_TORCH_TARGET_PICKER);
_scheduler.Schedule(Seconds(3), [this](TaskContext /*context*/)
{
- me->CastCustomSpell(SPELL_TORCH_TARGET_PICKER, SPELLVALUE_MAX_TARGETS, 1);
+ me->CastSpell(nullptr, SPELL_TORCH_TARGET_PICKER);
});
context.Repeat(Seconds(5));
});
@@ -2284,7 +2284,7 @@ public:
}
else
//me->CastSpell(me, GetFireworkSpell(me->GetEntry()), true);
- me->CastSpell(me->GetPositionX(), me->GetPositionY(), me->GetPositionZ(), GetFireworkSpell(me->GetEntry()), true);
+ me->CastSpell(me->GetPosition(), GetFireworkSpell(me->GetEntry()), true);
}
};