aboutsummaryrefslogtreecommitdiff
path: root/internal/player/store.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-21 22:19:17 -0400
committerhistoria <[not public]>2026-06-21 22:19:17 -0400
commita3ae1e6aad696f584d138d9363c05dedff136a65 (patch)
tree81e615f7227bc9d1ec79ceefc7311ecde917b074 /internal/player/store.go
parent84072ffe6365ad57c4976e9272762aa6db41de7e (diff)
downloadthehouseoficarus-a3ae1e6aad696f584d138d9363c05dedff136a65.tar.gz
feat: safespot system implemented
Diffstat (limited to 'internal/player/store.go')
-rw-r--r--internal/player/store.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/player/store.go b/internal/player/store.go
index c05b29d..04af594 100644
--- a/internal/player/store.go
+++ b/internal/player/store.go
@@ -89,10 +89,6 @@ 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)
}