авторитарный логин через лаунчер

This commit is contained in:
2026-08-30 02:18:27 +04:00
parent 23b3a3b864
commit e53b3c1784
4 changed files with 30 additions and 10 deletions
+13
View File
@@ -205,6 +205,19 @@ function Remove-MoonWellRuntimeGarbage {
}
}
# GlueXML is shipped by patch-ruRU-4.MPQ. Historical development copies in
# the client root override that archive and can restore the password form.
foreach ($relativePath in @(
'Interface\GlueXML\AccountLogin.lua',
'Interface\GlueXML\AccountLogin.xml'
)) {
$legacyOverride = Join-Path $Destination $relativePath
if (Test-Path -LiteralPath $legacyOverride -PathType Leaf) {
Remove-Item -LiteralPath $legacyOverride -Force
Write-Host "Removed obsolete loose GlueXML override: $legacyOverride"
}
}
Remove-EmptyMoonWellDirectories -Destination $Destination
}