Implemented hook for Player::MoveItemFromInventory

This commit is contained in:
Yehonal
2016-11-19 00:18:44 +01:00
parent e6f1dd8ead
commit 7e56f3f1fc
3 changed files with 12 additions and 1 deletions

View File

@@ -12820,6 +12820,8 @@ void Player::MoveItemFromInventory(uint8 bag, uint8 slot, bool update)
it->RemoveFromWorld();
it->DestroyForPlayer(this);
}
sScriptMgr->OnAfterPlayerMoveItemFromInventory(this,it,bag,slot,update);
}
}