refactor(Core/Entities): clean up vendor item removal and add QuaternionData Euler helpers (#24790)

This commit is contained in:
Francesco Borzì
2026-02-21 17:42:52 +01:00
committed by GitHub
parent 07e9cef70f
commit f7bc41eebe
3 changed files with 14 additions and 1 deletions

View File

@@ -88,7 +88,7 @@ bool VendorItemData::RemoveItem(uint32 item_id)
{
if ((*i)->item == item_id)
{
i = m_items.erase(i++);
i = m_items.erase(i);
found = true;
}
else