Fixed ip not getting assigned from the constructor

This commit is contained in:
alexsandulescu 2021-07-13 01:53:15 +03:00
parent 40093aaef1
commit 5bcf30a1a3

View File

@ -6,6 +6,7 @@ ServerListing::ServerListing(std::string name, std::string map, std::string ip,
{
this->name = name;
this->map = map;
this->ip = ip;
this->version = version;
}