Add server description to the PN packet (#230)

* Add SDESC packet

This packet allows servers to overwrite the server description, allowing them to display them even in the favourites menu.

* Un-Add SDESC and hijack PN to supply description
This commit is contained in:
Salanto 2022-02-16 00:52:48 +01:00 committed by GitHub
parent ef85d6d5ad
commit cde07b5c50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@ void AOClient::pktSoftwareId(AreaData* area, int argc, QStringList argv, AOPacke
m_version.minor = l_match.captured(3).toInt(); m_version.minor = l_match.captured(3).toInt();
} }
sendPacket("PN", {QString::number(server->m_player_count), QString::number(ConfigManager::maxPlayers())}); sendPacket("PN", {QString::number(server->m_player_count), QString::number(ConfigManager::maxPlayers()), ConfigManager::serverDescription()});
sendPacket("FL", l_feature_list); sendPacket("FL", l_feature_list);
if (ConfigManager::assetUrl().isValid()) { if (ConfigManager::assetUrl().isValid()) {