mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-24 16:17:44 +00:00
Update some documentation for modules and constants
This commit is contained in:
parent
481d6b69a2
commit
9009ae527c
1 changed files with 6 additions and 1 deletions
|
@ -11,6 +11,8 @@ pub mod common;
|
||||||
|
|
||||||
/// Config management.
|
/// Config management.
|
||||||
pub mod config;
|
pub mod config;
|
||||||
|
|
||||||
|
/// Bindings for Oodle network compression.
|
||||||
pub mod oodle;
|
pub mod oodle;
|
||||||
|
|
||||||
/// Patch server-specific code.
|
/// Patch server-specific code.
|
||||||
|
@ -26,10 +28,13 @@ pub mod world;
|
||||||
pub mod packet;
|
pub mod packet;
|
||||||
|
|
||||||
// TODO: make this configurable
|
// 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_ID: u16 = 63;
|
||||||
pub const WORLD_NAME: &str = "KAWARI";
|
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 ZONE_ID: u16 = 132;
|
||||||
|
|
||||||
pub const CONTENT_ID: u64 = 11111111111111111;
|
pub const CONTENT_ID: u64 = 11111111111111111;
|
||||||
|
|
Loading…
Add table
Reference in a new issue