diff --git a/src/networksystem/pylon.cpp b/src/networksystem/pylon.cpp index 19cf06d5..26636b4b 100644 --- a/src/networksystem/pylon.cpp +++ b/src/networksystem/pylon.cpp @@ -96,7 +96,7 @@ bool CPylon::GetServerList(vector& outServerList, string& outMe continue; } - outServerList.push_back(gameServer); + outServerList.emplace_back(std::move(gameServer)); } return true;