mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-20 23:33:50 +02:00
6
VRCX.cs
6
VRCX.cs
@@ -87,13 +87,13 @@ namespace VRCX
|
|||||||
if (match.Success == true)
|
if (match.Success == true)
|
||||||
{
|
{
|
||||||
var path = match.Groups[1].Value;
|
var path = match.Groups[1].Value;
|
||||||
var _arguments = Uri.EscapeDataString(arguments);
|
// var _arguments = Uri.EscapeDataString(arguments);
|
||||||
Process.Start(new ProcessStartInfo
|
Process.Start(new ProcessStartInfo
|
||||||
{
|
{
|
||||||
WorkingDirectory = path,
|
WorkingDirectory = path,
|
||||||
FileName = $"{path}\\steam.exe",
|
FileName = $"{path}\\steam.exe",
|
||||||
UseShellExecute = false,
|
UseShellExecute = false,
|
||||||
Arguments = $"-- \"steam://rungameid/438100//{_arguments}\""
|
Arguments = $"-applaunch 438100 {arguments}"
|
||||||
}).Close();
|
}).Close();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -118,7 +118,7 @@ namespace VRCX
|
|||||||
WorkingDirectory = path,
|
WorkingDirectory = path,
|
||||||
FileName = $"{path}\\VRChat.exe",
|
FileName = $"{path}\\VRChat.exe",
|
||||||
UseShellExecute = false,
|
UseShellExecute = false,
|
||||||
Arguments = $"\"{arguments}\""
|
Arguments = arguments
|
||||||
}).Close();
|
}).Close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user