From 030185f683775f1f0f1e4c4eafe6acea4e4e8f85 Mon Sep 17 00:00:00 2001 From: pypy Date: Sat, 7 Nov 2020 18:05:30 +0900 Subject: [PATCH] bugfix (closes #100 and closes #101) --- VRCX.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VRCX.cs b/VRCX.cs index 6e4264ca..c3155bb7 100644 --- a/VRCX.cs +++ b/VRCX.cs @@ -87,13 +87,13 @@ namespace VRCX if (match.Success == true) { var path = match.Groups[1].Value; - var _arguments = Uri.EscapeDataString(arguments); + // var _arguments = Uri.EscapeDataString(arguments); Process.Start(new ProcessStartInfo { WorkingDirectory = path, FileName = $"{path}\\steam.exe", UseShellExecute = false, - Arguments = $"-- \"steam://rungameid/438100//{_arguments}\"" + Arguments = $"-applaunch 438100 {arguments}" }).Close(); return; } @@ -118,7 +118,7 @@ namespace VRCX WorkingDirectory = path, FileName = $"{path}\\VRChat.exe", UseShellExecute = false, - Arguments = $"\"{arguments}\"" + Arguments = arguments }).Close(); } }