From abd612c15799f604e671e83dc7c410ed2b44185f Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Thu, 25 Jun 2026 15:40:48 -0400 Subject: slop refactor --- internal/player/store.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/player/store.go') 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) -- cgit v1.2.3