diff options
Diffstat (limited to 'server/src/main.rs')
-rw-r--r-- | server/src/main.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/server/src/main.rs b/server/src/main.rs index 7f7fe381..99834fbd 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -27,7 +27,7 @@ use tokio::{ time::interval, }; use tokio_tungstenite::tungstenite::Message; -use undercooked::{ +use hurrycurry_server::{ data::DATA_DIR, protocol::{PacketC, PacketS, PlayerID}, state::State, @@ -57,9 +57,9 @@ fn main() -> Result<()> { let data_dir = PathBuf::from_str( [ args.data_dir.to_str().unwrap(), - "/usr/local/share/undercooked/data", - "/usr/share/undercooked/data", - "/opt/undercooked/data", + "/usr/local/share/hurrycurry/data", + "/usr/share/hurrycurry/data", + "/opt/hurrycurry/data", ] .into_iter() .find(|p| PathBuf::from_str(p).unwrap().join("index.yaml").exists()) |