Skip to content

Commit b331721

Browse files
committed
Test.
1 parent 3f8c825 commit b331721

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ZkLobbyServer/ServerBattle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public ConnectSpring GetConnectSpringStructure(string scriptPassword, bool isSpe
211211
public bool IsInPreviousGame(string name)
212212
{
213213
var inPrevious = false;
214-
if (previousGamePlayers.Any(y => y.Name == name)) inPrevious = true;
214+
if (previousGamePlayers.Any(y => y == name)) inPrevious = true;
215215
return inPrevious;
216216
}
217217

0 commit comments

Comments
 (0)