diff options
Diffstat (limited to 'server/src/commands.rs')
-rw-r--r-- | server/src/commands.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/src/commands.rs b/server/src/commands.rs index 2a922e3f..2f0902ba 100644 --- a/server/src/commands.rs +++ b/server/src/commands.rs @@ -17,13 +17,12 @@ */ use crate::{ entity::{bot::BotDriver, tutorial::Tutorial}, - message::TrError, server::{AnnounceState, Server}, - tre, trm, }; use anyhow::Result; use clap::{Parser, ValueEnum}; use hurrycurry_bot::algos::ALGO_CONSTRUCTORS; +use hurrycurry_locale::{tre, trm, TrError}; use hurrycurry_protocol::{Character, Menu, Message, PacketC, PlayerClass, PlayerID}; use std::{fmt::Write, time::Duration}; |