From 9009ae527c153590ae9a991241a9cbfe36a957d9 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 17 Mar 2025 16:44:17 -0400 Subject: [PATCH] Update some documentation for modules and constants --- src/lib.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 48023d0..9935a42 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,6 +11,8 @@ pub mod common; /// Config management. pub mod config; + +/// Bindings for Oodle network compression. pub mod oodle; /// Patch server-specific code. @@ -26,10 +28,13 @@ pub mod world; pub mod packet; // TODO: make this configurable -// See https://ffxiv.consolegameswiki.com/wiki/Servers for a list of possible IDs +/// The world ID and name for the lobby. +/// See https://ffxiv.consolegameswiki.com/wiki/Servers for a list of possible IDs. pub const WORLD_ID: u16 = 63; pub const WORLD_NAME: &str = "KAWARI"; +/// The zone ID you initially spawn in. +/// See the TerritoryType excel sheet for a list of possible IDs. pub const ZONE_ID: u16 = 132; pub const CONTENT_ID: u64 = 11111111111111111;