maint: add fs_basegame to getInfo

This commit is contained in:
st0rm 2024-04-05 23:56:31 +00:00
parent 97c48da499
commit de90b5c0aa

View File

@ -421,6 +421,7 @@ namespace party
info.set("sv_maxclients", std::to_string(*game::mp::svs_clientCount)); info.set("sv_maxclients", std::to_string(*game::mp::svs_clientCount));
info.set("protocol", std::to_string(PROTOCOL)); info.set("protocol", std::to_string(PROTOCOL));
info.set("shortversion", SHORTVERSION); info.set("shortversion", SHORTVERSION);
info.set("fs_basegame", dvars::get_string("fs_basegame"));
network::send(target, "infoResponse", info.build(), '\n'); network::send(target, "infoResponse", info.build(), '\n');
}); });