Dev #89

Merged
OpzekerIT merged 8 commits from dev into main 2023-11-10 08:30:33 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit dd2bd55c7a - Show all commits

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
}