From d3225439469a6a2aa3b9d017448aefab3f1795eb Mon Sep 17 00:00:00 2001 From: Jonathan Wanke Date: Sun, 5 Apr 2026 21:45:07 +0200 Subject: [PATCH] main.rs commented code marked with reason for comment. --- src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 767106f..5df39b6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -113,6 +113,7 @@ async fn main() { log!("User IDS: {}", sb); // COMMUNITY MANAGEMENT + // Reason for comment: Communities have not been implemented yet. /* registry::load_interactables().await; community_manager::load_communities().await; community_manager::save_communities().await; @@ -138,7 +139,8 @@ async fn main() { } } } - /* + /* Community port activation is used for activating the port for communities. + * Code is currently commented because communities have not been implemented yet. if start(port).await { log_t!("community_active", ip, port.to_string()); } else { @@ -174,6 +176,7 @@ async fn main() { } &CONFIG.write().await.clear(); user_manager::clear(); + // Commhnities have not been implemented yet. /*community_manager::clear();*/ *APP_STATE.lock().unwrap() = AppState::new(); }