From 832d79b1357735ee5b8aa29a1fdc22b8fdbc5f17 Mon Sep 17 00:00:00 2001 From: man-of-eel <86927456+man-of-eel@users.noreply.github.com> Date: Mon, 15 Nov 2021 07:11:07 +0000 Subject: [PATCH] Fix for character 3D View on Wine --- Novetus/NovetusCore/CharCustom/CharacterCustomizationShared.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Novetus/NovetusCore/CharCustom/CharacterCustomizationShared.cs b/Novetus/NovetusCore/CharCustom/CharacterCustomizationShared.cs index 304ea9a..0577db6 100644 --- a/Novetus/NovetusCore/CharCustom/CharacterCustomizationShared.cs +++ b/Novetus/NovetusCore/CharCustom/CharacterCustomizationShared.cs @@ -760,6 +760,7 @@ class CharacterCustomizationShared { Process client = new Process(); client.StartInfo.FileName = rbxexe; + client.StartInfo.WorkingDirectory = Path.GetDirectoryName(rbxexe); client.StartInfo.Arguments = args; client.Start(); client.PriorityClass = GlobalVars.UserConfiguration.Priority; @@ -772,4 +773,4 @@ class CharacterCustomizationShared } #endregion } -#endregion \ No newline at end of file +#endregion