From 652f7fcbb063155153f683e34fb319260acfa69d Mon Sep 17 00:00:00 2001 From: Vanessa Date: Mon, 15 Jun 2026 08:56:48 -0500 Subject: [PATCH] Change path to prevent conflicts. --- .../Space Station 14 Launcher.app/Contents/MacOS/SS14 | 4 ++-- SS14.Launcher.Bootstrap/Program.cs | 2 +- SS14.Launcher.FakeRobustToolbox/server/run | 2 +- SS14.Launcher/LauncherPaths.cs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/PublishFiles/Space Station 14 Launcher.app/Contents/MacOS/SS14 b/PublishFiles/Space Station 14 Launcher.app/Contents/MacOS/SS14 index 5d16452..dd83207 100755 --- a/PublishFiles/Space Station 14 Launcher.app/Contents/MacOS/SS14 +++ b/PublishFiles/Space Station 14 Launcher.app/Contents/MacOS/SS14 @@ -5,7 +5,7 @@ BASEDIR=$(dirname "$0") echo "$BASEDIR" cd "$BASEDIR" -mkdir -p "$HOME/Library/Application Support/Space Station 14" +mkdir -p "$HOME/Library/Application Support/Space Wizards Federation" ARCH=$(uname -m) @@ -14,4 +14,4 @@ export DOTNET_ROOT="$(pwd)/../Resources/$ARCH/dotnet" # Why do we invoke dotnet with the dll, instead of the apphost? # Because for some reason, the ARM64 apphost is broken when published by GitHub Actions. # Idk dude. This works. -exec "$DOTNET_ROOT/dotnet" ../Resources/$ARCH/bin/SS14.Launcher.dll "$@" > "$HOME/Library/Application Support/Space Station 14/launcher.log" +exec "$DOTNET_ROOT/dotnet" ../Resources/$ARCH/bin/SS14.Launcher.dll "$@" > "$HOME/Library/Application Support/Space Wizards Federation/launcher.log" diff --git a/SS14.Launcher.Bootstrap/Program.cs b/SS14.Launcher.Bootstrap/Program.cs index eaf4bf3..d0bb38c 100644 --- a/SS14.Launcher.Bootstrap/Program.cs +++ b/SS14.Launcher.Bootstrap/Program.cs @@ -70,7 +70,7 @@ private static void UnfuckDotnetRoot() if (val is not string s) return; - if (!s.Contains("Space Station 14") && !s.Contains("SS14.Launcher")) + if (!s.Contains("Space Wizards Federation") && !s.Contains("SS14.Launcher")) return; envKey.DeleteValue("DOTNET_ROOT"); diff --git a/SS14.Launcher.FakeRobustToolbox/server/run b/SS14.Launcher.FakeRobustToolbox/server/run index b7f5835..1c60b91 100755 --- a/SS14.Launcher.FakeRobustToolbox/server/run +++ b/SS14.Launcher.FakeRobustToolbox/server/run @@ -7,6 +7,6 @@ cp ../Robust.Client/bin/Debug/*/Robust.Client.dll ./ zip client.zip Robust.Client.dll echo WARNING: Copying in "meme" engine version echo You will still need to formally add the engine version into your launcher config! -cp client.zip ~/".local/share/Space Station 14/launcher/engines/meme.zip" +cp client.zip ~/".local/share/Space Wizards Federation/launcher/engines/meme.zip" python3 -m http.server 1212 diff --git a/SS14.Launcher/LauncherPaths.cs b/SS14.Launcher/LauncherPaths.cs index 025ea50..4ff3163 100644 --- a/SS14.Launcher/LauncherPaths.cs +++ b/SS14.Launcher/LauncherPaths.cs @@ -9,7 +9,7 @@ namespace SS14.Launcher; /// public static class LauncherPaths { - public static readonly string AppDataPath = Path.Combine("Space Station 14", GetAppDataName()); + public static readonly string AppDataPath = Path.Combine("Space Wizards Federation", GetAppDataName()); public static readonly string EngineInstallationsDirName = "engines"; public static readonly string EngineModulesDirName = "modules"; public static readonly string ServerContentDirName = "server content";