diff --git a/bootstrapper-manual.html b/bootstrapper-manual.html
index b120dc9..e7a1432 100644
--- a/bootstrapper-manual.html
+++ b/bootstrapper-manual.html
@@ -74,7 +74,7 @@
OpenWF Bootstrapper Manual
- While the main feature of the bootstrapper (dwmapi.dll, wtsapi32.dll, or version.dll) is to use a custom server with the game, it has other features as well.
+ While the main feature of the bootstrapper (wtsapi32.dll, dwmapi.dll, or version.dll) is to use a custom server with the game, it has other features as well.
Client Config.json
The bootstrapper's configuration is in OpenWF/Client Config.json
relative to your game folder. It has the following fields:
diff --git a/supplementals/Download Latest DLL.ps1 b/supplementals/Download Latest DLL.ps1
index 36dd191..b4191e3 100644
--- a/supplementals/Download Latest DLL.ps1
+++ b/supplementals/Download Latest DLL.ps1
@@ -1,9 +1,9 @@
Write-Host "Fetching latest version..."
$latest = Invoke-RestMethod -Uri "https://openwf.io/supplementals/client%20drop-in/meta" -Method Get
-$dll_path = "../dwmapi.dll"
-if (Test-Path "../wtsapi32.dll") {
- $dll_path = "../wtsapi32.dll"
+$dll_path = "../wtsapi32.dll"
+if (Test-Path "../dwmapi.dll") {
+ $dll_path = "../dwmapi.dll"
}
if (Test-Path "../version.dll") {
$dll_path = "../version.dll"