| | |
| | | return guid;
|
| | | }
|
| | |
|
| | | private void RemoveItemByEquipPlace(int _place)
|
| | | private void RemoveItemByEquipPlace(int place)
|
| | | {
|
| | | var place = _place == 10 ? 9 : _place;
|
| | | var keys = new List<string>(betterEquipModels.Keys);
|
| | | for (int i = keys.Count - 1; i >= 0; i--)
|
| | | {
|
| | |
| | | }
|
| | | }
|
| | |
|
| | | private bool TryGetEquipByPlace(int _place, out ItemModel _itemModel)
|
| | | private bool TryGetEquipByPlace(int place, out ItemModel _itemModel)
|
| | | {
|
| | | var place = _place == 10 ? 9 : _place;
|
| | | var keys = new List<string>(betterEquipModels.Keys);
|
| | | for (int i = keys.Count - 1; i >= 0; i--)
|
| | | {
|