Skip to content

Commit 3df8c47

Browse files
Bod9001corp-0
andauthored
TTS Crash ffix 938 (#236)
* TTS Crash ffix * Update UnitystationLauncher/Assets/org.unitystation.StationHub.metainfo.xml --------- Co-authored-by: Gilles <43683714+corp-0@users.noreply.github.com>
1 parent 0b88cb3 commit 3df8c47

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

UnitystationLauncher/Assets/org.unitystation.StationHub.metainfo.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,14 @@
6565
</screenshots>
6666

6767
<releases>
68+
<release version="938" date="2024-12-13">
69+
<description>
70+
<p>Fix:</p>
71+
<ul>
72+
<li>Fixed an issue where TTS errors would crash the entire TTS system</li>
73+
</ul>
74+
</description>
75+
</release>
6876
<release version="937" date="2024-12-13">
6977
<description>
7078
<p>Fix:</p>

UnitystationLauncher/Constants/AppInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ public static class AppInfo
44
{
55
// Whenever you change the currentBuild here, please also update the one in
66
// UnitystationLauncher/Assets/org.unitystation.StationHub.metainfo.xml
7-
public const int CurrentBuild = 937;
7+
public const int CurrentBuild = 938;
88
}

UnitystationLauncher/Services/TTSService.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,6 @@ public void StartTTS()
298298
ArgumentList = { arguments },
299299
UseShellExecute = false, // Don't use the shell
300300
CreateNoWindow = true, // Run without creating a window
301-
RedirectStandardOutput = true, // Optional: Redirect output for logging
302-
RedirectStandardError = true, // Optional: Redirect error output
303301
};
304302

305303
if (startInfo == null)

0 commit comments

Comments
 (0)