This commit is contained in:
stobbelaart 2023-11-10 09:30:01 +01:00
parent 254516e465
commit dd2bd55c7a
2 changed files with 2 additions and 2 deletions

View file

@ -31,7 +31,7 @@ if ($fileContent -match "\`$clanmembers\s*=\s*array\(([^)]+)\)") {
else {
Write-Output "Clan members not found"
}
if ($clanMembersArray.count -ge 10 ) {
if ($clanMembersArray.count -gt 10 ) {
write-output "Currently not able to process more then 10 players"
exit
}

View file

@ -27,7 +27,7 @@ if ($fileContent -match "\`$clanmembers\s*=\s*array\(([^)]+)\)") {
else {
Write-Output "Clan members not found"
}
if ($clanMembersArray.count -ge 10 ) {
if ($clanMembersArray.count -gt 10 ) {
write-output "Currently not able to process more then 10 players"
exit
}