feat: add enchant helper

This commit is contained in:
k0t9i
2023-01-25 15:59:34 +04:00
parent 1d0dbf86c3
commit d7c0375416
9 changed files with 153 additions and 22 deletions

View File

@@ -104,7 +104,8 @@ namespace Interlude
itemInfo.isEquipped,
itemInfo.enchantLevel,
itemInfo.mana,
itemInfo.type2 == L2::ItemType2::QUEST
itemInfo.type2 == L2::ItemType2::QUEST,
itemInfo.itemSlot == L2::ItemSlot::LR_HAND
}
}
);
@@ -121,7 +122,8 @@ namespace Interlude
itemInfo.isEquipped,
itemInfo.enchantLevel,
itemInfo.mana,
itemInfo.type2 == L2::ItemType2::QUEST
itemInfo.type2 == L2::ItemType2::QUEST,
itemInfo.itemSlot == L2::ItemSlot::LR_HAND
};
switch (actionType)