We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48df406 commit f76f29eCopy full SHA for f76f29e
src/Backdash/Player/NetcodePlayer.cs
@@ -128,10 +128,10 @@ public override string ToString()
128
builder.Append("Player");
129
}
130
131
- builder.Append(Index);
+ builder.Append(Number);
132
133
- if (CustomId != 0)
134
- builder.Append($"(Id: ${CustomId})");
+ if (CustomId is not 0)
+ builder.Append($"(Id: {CustomId})");
135
136
builder.Append('}');
137
return builder.ToString();
0 commit comments