diff --git a/Assets/Rivet/Editor/UI/Dock/Tabs/DevelopController.cs b/Assets/Rivet/Editor/UI/Dock/Tabs/DevelopController.cs index b41af77..0c3acdc 100644 --- a/Assets/Rivet/Editor/UI/Dock/Tabs/DevelopController.cs +++ b/Assets/Rivet/Editor/UI/Dock/Tabs/DevelopController.cs @@ -126,7 +126,7 @@ public void OnBootstrap() var plugin = RivetGlobal.Singleton; // Toggle remote environment - _environmentTypeDropdown.choices[1] = plugin.IsAuthenticated ? "Remote (Live Servers)" : "Remote (Live Servers) (Requires Sign In)"; + _environmentTypeDropdown.choices[1] = plugin.IsAuthenticated ? "Remote" : "Remote (Requires Sign In)"; // Add environment list if (plugin.CloudData is { } cloudData) @@ -138,7 +138,7 @@ public void OnBootstrap() string buildName = env.Name; if (cloudData.CurrentBuilds.TryGetValue(env.Id, out var build) && build.Tags.TryGetValue("version", out var versionTag)) { - buildName = $" ({versionTag})"; + buildName += $" ({versionTag})"; } environments.Add(buildName); } diff --git a/Dockerfile b/game_server.Dockerfile similarity index 100% rename from Dockerfile rename to game_server.Dockerfile