Skip to content

Commit

Permalink
fix sc2: use correct var
Browse files Browse the repository at this point in the history
  • Loading branch information
hjpalpha authored Sep 10, 2024
1 parent 048451d commit a0e6636
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ function MapFunctions.getTeamParticipants(mapInput, opponent, opponentIndex)

Array.forEach(unattachedParticipants, function(participant)
local name = mapInput['t' .. opponentIndex .. 'p' .. participant.position]
local nameUpper = participant.name:upper()
local nameUpper = name:upper()
local isTBD = nameUpper == TBD or nameUpper == TBA

table.insert(opponent.match2players, {
Expand Down

0 comments on commit a0e6636

Please sign in to comment.