Skip to content

Commit b73f619

Browse files
Cleanup #2
1 parent 55fc8b4 commit b73f619

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Crossplay/CrossplayPlugin.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ private void OnPostInitialize(EventArgs e)
176176
StringBuilder sb = new StringBuilder();
177177
sb.Append("Crossplay has been enabled & has whitelisted the following versions:\n");
178178
sb.Append(string.Join(", ", AllowedVersions.Select(v => ParseVersion(v))));
179-
sb.Append("\nIf there are any issues please report them here: https://github.com/Moneylover3246/Crossplay");
179+
sb.Append("\n\nIf there are any issues please report them here: https://github.com/Moneylover3246/Crossplay");
180180

181181
Console.ForegroundColor = ConsoleColor.Magenta;
182182
Console.WriteLine("-------------------------------------");
@@ -197,8 +197,8 @@ private void OnGetData(GetDataEventArgs args)
197197
{
198198
if ((int)args.MsgID == 1)
199199
{
200-
string versionstring = reader.ReadString();
201-
if (!int.TryParse(versionstring.Substring(versionstring.Length - 3), out int versionNum))
200+
string clientVersion = reader.ReadString();
201+
if (!int.TryParse(clientVersion.Substring(clientVersion.Length - 3), out int versionNum))
202202
{
203203
return;
204204
}

0 commit comments

Comments
 (0)