Skip to content
This repository was archived by the owner on Jun 28, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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"
2 changes: 1 addition & 1 deletion SS14.Launcher.Bootstrap/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion SS14.Launcher.FakeRobustToolbox/server/run
Original file line number Diff line number Diff line change
Expand Up @@ -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

2 changes: 1 addition & 1 deletion SS14.Launcher/LauncherPaths.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace SS14.Launcher;
/// </summary>
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";
Expand Down
Loading