feat: map item to slot
This commit is contained in:
parent
63309db7d9
commit
600f4a2f50
1 changed files with 12 additions and 2 deletions
|
@ -71,8 +71,18 @@ public class ItemObjectPoolService : IHostedService
|
||||||
{
|
{
|
||||||
ItemId = itemId,
|
ItemId = itemId,
|
||||||
Count = count,
|
Count = count,
|
||||||
Slot = 0,
|
Slot = (byte)item.SlotNo1,
|
||||||
InventoryTab = InventoryTab.WornEquipment,
|
InventoryTab =
|
||||||
|
item.ItemType switch
|
||||||
|
{
|
||||||
|
1 => InventoryTab.WornCashEquipment,
|
||||||
|
2 => isWorn ? InventoryTab.WornEquipment : InventoryTab.Equipment,
|
||||||
|
3 => InventoryTab.Etc,
|
||||||
|
4 => isWorn ? InventoryTab.WornCashEquipment : InventoryTab.Cash,
|
||||||
|
5 => InventoryTab.Warehouse,
|
||||||
|
0 => InventoryTab.WornEquipment,
|
||||||
|
_ => 0
|
||||||
|
},
|
||||||
Level = item.MinimumLevelRequirement,
|
Level = item.MinimumLevelRequirement,
|
||||||
Rarity = 0,
|
Rarity = 0,
|
||||||
AddOption = 0,
|
AddOption = 0,
|
||||||
|
|
Loading…
Reference in a new issue