diff options
Diffstat (limited to 'Lua/src')
-rw-r--r-- | Lua/src/base/UParty.pas | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lua/src/base/UParty.pas b/Lua/src/base/UParty.pas index 1566e4e8..d7392d4b 100644 --- a/Lua/src/base/UParty.pas +++ b/Lua/src/base/UParty.pas @@ -444,6 +444,7 @@ begin end else begin + Result := False; for I := 0 to High(Modes) do if (Modes[I].TeamCount and (1 shl (CountTeams - 1)) <> 0) then begin @@ -542,6 +543,7 @@ begin if (bPartyStarted) and (CurRound >= 0) and (CurRound <= High(Rounds)) then begin Rounds[CurRound].Winner := WinBin; + Result := true; end else Result := false; |