Skip to content

Commit b86eb3d

Browse files
committed
Fix failure to launch correct SoF.exe if multiple SoF.exe installed with latest windows
1 parent f359977 commit b86eb3d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

http_listener.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Write-Host 'Keep this window open so that it can detect map change.'
2020
Write-Host 'SoF should open automatically now.'
2121

2222
# Launch SoF - PassThru required to kill later.
23-
$gameProcess = Start-Process -PassThru -FilePath 'SoF.exe' -ArgumentList $arguments
23+
$gameProcess = Start-Process -PassThru -FilePath './SoF.exe' -ArgumentList $arguments
2424

2525
While ($true) {
2626
If (Test-Path $AFile) {

user/sofplus/addons/http2.func

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function http2_init()
1919

2020
function http2_init_print()
2121
{
22-
echo "[HTTP] Version v2.0 Loaded"
22+
echo "[HTTP] Version v2.1 Loaded"
2323
}
2424

2525
//2 -> 4 -> 7 -> 8

0 commit comments

Comments
 (0)