diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-30 16:03:23 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-30 16:21:38 +0200 |
commit | 2d60da9a6fe0a7418d07475b7c0a677f7f2922d4 (patch) | |
tree | 5feb6bb6067bc63c9fa07e79fdaf877ac444a1e4 /server/src/entity/book.rs | |
parent | 7119a5b092439f7339025cb1b7e445d035f92ac6 (diff) | |
download | hurrycurry-2d60da9a6fe0a7418d07475b7c0a677f7f2922d4.tar hurrycurry-2d60da9a6fe0a7418d07475b7c0a677f7f2922d4.tar.bz2 hurrycurry-2d60da9a6fe0a7418d07475b7c0a677f7f2922d4.tar.zst |
Extract server locale code to own crate
Diffstat (limited to 'server/src/entity/book.rs')
-rw-r--r-- | server/src/entity/book.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/entity/book.rs b/server/src/entity/book.rs index 566eb0a9..4b87aa44 100644 --- a/server/src/entity/book.rs +++ b/server/src/entity/book.rs @@ -16,8 +16,8 @@ */ use super::{Entity, EntityContext}; -use crate::message::TrError; use anyhow::Result; +use hurrycurry_locale::TrError; use hurrycurry_protocol::{glam::IVec2, Menu, PacketC, PlayerID}; #[derive(Debug, Clone)] |