add chat plane

This commit is contained in:
2026-09-16 20:46:22 +07:00
parent 4329385abe
commit d1b83fdc33
5 changed files with 1111 additions and 28 deletions
+1 -1
View File
@@ -399,7 +399,7 @@ impl From<&ParsedEdition> for EntityHead {
/// Every entity's committed head, keyed by coordinate.
pub type Floors = BTreeMap<[u8; 32], EntityHead>;
fn canonical_decimal(raw: &str) -> Option<u64> {
pub(crate) fn canonical_decimal(raw: &str) -> Option<u64> {
if raw.is_empty() || !raw.bytes().all(|byte| byte.is_ascii_digit()) {
return None;
}