Flip order of assignment

This commit is contained in:
Kawe Mazidjatari 2022-08-31 18:20:11 +02:00
parent e40a638424
commit d9709cfb1e

View File

@ -47,8 +47,8 @@ void CBanSystem::Load(void)
continue;
}
string svIpAddress = jsEntry["ipAddress"].get<string>();
uint64_t nNucleusID = jsEntry["nucleusId"].get<uint64_t>();
string svIpAddress = jsEntry["ipAddress"].get<string>();
m_vBanList.push_back(std::make_pair(svIpAddress, nNucleusID));
}