feat: Completed commands list

- Added MapError::CannotReach variant
- Updated Map::unlock_room_for_account to check reachableness
- Added /info command
- Added /unlock command
- Added /move command
- Added /reset command
This commit is contained in:
Alexey 2025-12-15 15:19:07 +03:00
commit b6ea2d8958
11 changed files with 170 additions and 12 deletions

View file

@ -42,11 +42,15 @@ async fn main() {
commands: vec![
commands::quest::quest(),
commands::register(),
commands::info(),
commands::init::init(),
commands::answer::answer(),
commands::social::social(),
commands::account::scoreboard(),
commands::account::balance(),
commands::account::reset(),
commands::map::unlock(),
commands::map::r#move(),
],
..Default::default()
})