From 458916fb78dcef3ff77cb29b7ba98d9f646819fc Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 19 Jun 2026 02:08:55 -0400 Subject: feat: rough pharmacy skill added --- internal/player/store.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'internal/player/store.go') diff --git a/internal/player/store.go b/internal/player/store.go index 04af594..c05b29d 100644 --- a/internal/player/store.go +++ b/internal/player/store.go @@ -89,6 +89,10 @@ func (s *AccountStore) LoadCharacter(name string) (*Player, error) { if p.Skills == nil { p.Skills = make(map[SkillName]int) } + if xp, ok := p.Skills["alchemy"]; ok { + p.Skills[Pharmacy] = xp + delete(p.Skills, "alchemy") + } if p.Equipment == nil { p.Equipment = make(map[object.EquipSlot]string) } -- cgit v1.2.3