diff --git a/server/src/roblox_studio.rs b/server/src/roblox_studio.rs index 8da69b95..6f461285 100644 --- a/server/src/roblox_studio.rs +++ b/server/src/roblox_studio.rs @@ -7,7 +7,7 @@ use std::env; static ROJO_PLUGIN_ID: &'static str = "1211549683"; #[cfg(target_os = "windows")] -pub fn install_location() -> Option { +pub fn get_install_location() -> Option { let local_app_data = env::var("LocalAppData").ok()?; let mut location = PathBuf::from(local_app_data); @@ -17,12 +17,12 @@ pub fn install_location() -> Option { } #[cfg(target_os = "macos")] -pub fn install_location() -> Option { +pub fn get_install_location() -> Option { unimplemented!(); } #[cfg(not(any(target_os = "windows", target_os = "macos")))] -pub fn install_location() -> Option { +pub fn get_install_location() -> Option { // Roblox Studio doesn't install on any other platforms! None } \ No newline at end of file