refactor: replace unique_ptr to shared_ptr

This commit is contained in:
k0t9i
2023-02-10 18:49:47 +04:00
parent bb4538794b
commit 81e26a7e52
13 changed files with 51 additions and 67 deletions

View File

@@ -98,7 +98,8 @@ namespace L2Bot::Domain::Entities
EtcItem(const EtcItem* other) :
BaseItem(other),
m_Amount(other->m_Amount),
m_IsAutoused(other->m_IsAutoused)
m_IsAutoused(other->m_IsAutoused),
m_IsQuest(other->m_IsQuest)
{
}