diff options
| author | Nay <dnpd.dd@gmail.com> | 2012-10-12 01:28:37 +0200 |
|---|---|---|
| committer | Nay <dnpd.dd@gmail.com> | 2012-10-12 01:28:37 +0200 |
| commit | abe81119b44c5de7b5dcd23e6f4d5740cc2ea863 (patch) | |
| tree | f7c7350b113c6712daa3bd128056c4d801cd8fda | |
| parent | 923cad31f3972fa5388d492e99161e3234d8a78c (diff) | |
Core/Script: Fix item unusual compass.
By Kaelima and Retriman
Closes #8039
| -rw-r--r-- | src/server/scripts/Spells/spell_item.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_item.cpp b/src/server/scripts/Spells/spell_item.cpp index 0508d95a60b..ef810b50b6f 100644 --- a/src/server/scripts/Spells/spell_item.cpp +++ b/src/server/scripts/Spells/spell_item.cpp @@ -1844,7 +1844,7 @@ class spell_item_unusual_compass : public SpellScriptLoader { Unit* caster = GetCaster(); caster->SetOrientation(frand(0.0f, 62832.0f) / 10000.0f); - caster->SendMovementFlagUpdate(); + caster->SendMovementFlagUpdate(true); } void Register() |
