diff options
author | Rochet2 <rochet2@post.com> | 2015-06-21 12:04:50 +0300 |
---|---|---|
committer | Rochet2 <rochet2@post.com> | 2015-06-21 12:04:50 +0300 |
commit | abf3d22870da2b555719278b6e1027ad95c0b195 (patch) | |
tree | d8bfe7f9530d2c92813824931cabb57b300be6c5 | |
parent | dbe20510569e6bd4a26892be84289b5864350ea6 (diff) |
Fix tabard and cloak mirror image models
Apparently the order of the two items changed.
Mirror image and clone weapon spells are still likely missing transmogrification support.
-rw-r--r-- | src/server/game/Handlers/SpellHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Handlers/SpellHandler.cpp b/src/server/game/Handlers/SpellHandler.cpp index 6d3b2a7cb5b..6d3f35d407d 100644 --- a/src/server/game/Handlers/SpellHandler.cpp +++ b/src/server/game/Handlers/SpellHandler.cpp @@ -549,8 +549,8 @@ void WorldSession::HandleMirrorImageDataRequest(WorldPackets::Spells::GetMirrorI EQUIPMENT_SLOT_FEET, EQUIPMENT_SLOT_WRISTS, EQUIPMENT_SLOT_HANDS, - EQUIPMENT_SLOT_BACK, EQUIPMENT_SLOT_TABARD, + EQUIPMENT_SLOT_BACK, EQUIPMENT_SLOT_END }; |