Changed some variables from ServerInfo to an integer. .NET updated to version 7.0

Not compatible with the current MasterServer. `https://test.ragecoop.online/` is compatible
This commit is contained in:
xEntenKoeniqx
2022-11-19 00:01:38 +01:00
parent 745b212b42
commit 478305112f
4 changed files with 16 additions and 12 deletions

View File

@ -10,11 +10,11 @@ namespace RageCoop.Core
{
#pragma warning disable 1591
public string address { get; set; }
public string port { get; set; }
public int port { get; set; }
public string name { get; set; }
public string version { get; set; }
public string players { get; set; }
public string maxPlayers { get; set; }
public int players { get; set; }
public int maxPlayers { get; set; }
public string country { get; set; }
public string description { get; set; }
public string website { get; set; }