diff options
Diffstat (limited to 'internal/player/store.go')
| -rw-r--r-- | internal/player/store.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/player/store.go b/internal/player/store.go index 97ff13f..bcadf3b 100644 --- a/internal/player/store.go +++ b/internal/player/store.go @@ -6,8 +6,8 @@ import ( "path/filepath" "strings" - "thehouseoficarus/internal/object" "gopkg.in/yaml.v3" + "thehouseoficarus/internal/item" ) type AccountStore struct { @@ -90,7 +90,7 @@ func (s *AccountStore) LoadCharacter(name string) (*Player, error) { p.Skills = make(map[SkillName]int) } if p.Equipment == nil { - p.Equipment = make(map[object.EquipSlot]string) + p.Equipment = make(map[item.EquipSlot]string) } if p.Inventory == nil { p.Inventory = make(map[int]*InventorySlot) |
