diff options
| author | historia <[not public]> | 2026-06-11 19:24:25 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-11 19:24:25 -0400 |
| commit | 6b2b4bf470b655f01c5a21c5f558a6102402c214 (patch) | |
| tree | 10970b523999b87ea09c63486906f0c5314f3542 /internal/player | |
| parent | 1b9e2da3b3c438d8dc53d3489725dd5ba0022777 (diff) | |
| download | thehouseoficarus-6b2b4bf470b655f01c5a21c5f558a6102402c214.tar.gz | |
feat: map implemented with BFS
Diffstat (limited to 'internal/player')
| -rw-r--r-- | internal/player/player.go | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/internal/player/player.go b/internal/player/player.go index cccf979..56ab06c 100644 --- a/internal/player/player.go +++ b/internal/player/player.go @@ -141,14 +141,15 @@ func New(name string) *Player { Equipment: make(map[object.EquipSlot]string), AttackStyle: Accurate, Toggles: map[string]bool{ - "description": true, - "tinymap": true, - "xpdrops": true, - "exits": true, - "mobenter": true, - "mobleave": true, - "mobspawn": true, - "reserve": true, + "description": true, + "tinymap": true, + "left-tinymap": false, + "xpdrops": true, + "exits": true, + "mobenter": true, + "mobleave": true, + "mobspawn": true, + "reserve": true, }, RoomID: 0, } |
