Skip to content

Commit 2e5015c

Browse files
committed
minor fixes
1 parent 1b1c1d3 commit 2e5015c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TeamsLogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ private bool IsFirstRun()
3838
private int LogCurrentTeams()
3939
{
4040
var teams = RelationshipManager.Instance.teams;
41-
if (!teams?.Any() == true) return 0;
41+
if (teams?.Any() != true) return 0;
4242

4343
foreach (var team in teams)
4444
{

0 commit comments

Comments
 (0)