aboutsummaryrefslogtreecommitdiff
path: root/server/tools
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-10-24 20:53:08 +0200
committermetamuffin <metamuffin@disroot.org>2025-10-24 20:53:08 +0200
commite67d2d03f9e2d66a24a6b7561146af589e019891 (patch)
treed776ae10122b569f6d8faf36cd01088ce1231afc /server/tools
parent1e5dc0dee2fed17d6cc5c0e98edbb9b72daa6345 (diff)
downloadhurrycurry-e67d2d03f9e2d66a24a6b7561146af589e019891.tar
hurrycurry-e67d2d03f9e2d66a24a6b7561146af589e019891.tar.bz2
hurrycurry-e67d2d03f9e2d66a24a6b7561146af589e019891.tar.zst
Localize book html export
Diffstat (limited to 'server/tools')
-rw-r--r--server/tools/src/map_linter.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tools/src/map_linter.rs b/server/tools/src/map_linter.rs
index 80eae8fa..1631eae6 100644
--- a/server/tools/src/map_linter.rs
+++ b/server/tools/src/map_linter.rs
@@ -19,7 +19,7 @@
use anyhow::Result;
use hurrycurry_data::{Serverdata, index::DataIndex};
use hurrycurry_locale::{
- FALLBACK_LOCALE,
+ GLOBAL_LOCALE,
message::{COLORED, MessageDisplayExt},
trm,
};
@@ -146,7 +146,7 @@ static TILE_MODE: LazyLock<HashMap<String, TileMode>> = LazyLock::new(|| {
pub fn check_map(map: &str) -> Result<()> {
let style = &COLORED;
- let locale = &*FALLBACK_LOCALE;
+ let locale = &*GLOBAL_LOCALE;
let index = DataIndex::new("data".into())?;
let (data, serverdata) = index.generate(map)?;