Text changes

pull/232/head
KnifMelti 2022-11-02 19:58:38 +01:00
parent efc68d12cc
commit a25b01bca1
1 changed files with 3 additions and 4 deletions

View File

@ -94,15 +94,14 @@ if (Test-Network) {
Write-Log "WAU uses External Mods from: $($WAUConfig.WAU_ModsPath)" Write-Log "WAU uses External Mods from: $($WAUConfig.WAU_ModsPath)"
$NewMods = Test-ModsPath $WAUConfig.WAU_ModsPath $WAUConfig.InstallLocation $NewMods = Test-ModsPath $WAUConfig.WAU_ModsPath $WAUConfig.InstallLocation
if ($NewMods) { if ($NewMods) {
Write-Log "Newer Mods downloaded/copied to local path: $($WAUConfig.InstallLocation)" "Yellow" Write-Log "Newer Mods downloaded/copied to local path: $($WAUConfig.InstallLocation)\mods" "Yellow"
} }
else { else {
if (Test-Path "$WorkingDir\mods\*.ps1") { if (Test-Path "$WorkingDir\mods\*.ps1") {
Write-Log "Mods is up to date." "Green" Write-Log "Mods are up to date." "Green"
} }
else { else {
Write-Log "Mods doesn't exist!" "Yellow" Write-Log "Mods aren't implemented..." "Yellow"
#Exit 0
} }
} }
} }