From 5c8998ddb25869577bb416b94df62bdcaa4345c7 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sat, 22 Mar 2025 17:08:33 -0400 Subject: [PATCH] Change default world id back to Gilgamesh I quickly realized that the "Dev" server is under the "Unknown" data center, and that's kinda hard to select in the client. I'll think about a solution later. --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 34d3337..703239f 100644 --- a/src/config.rs +++ b/src/config.rs @@ -179,7 +179,7 @@ impl Default for WorldConfig { Self { port: 7100, listen_address: "127.0.0.1".to_string(), - world_id: 1, // Dev + world_id: 63, // Gilgamesh } } }