Remove RPCN test server

This commit is contained in:
RipleyTom 2025-12-08 00:03:49 +01:00 committed by Megamouse
parent 65458effa6
commit adcacc1119
2 changed files with 3 additions and 4 deletions

View File

@ -190,9 +190,8 @@ bool cfg_rpcn::add_host(std::string_view new_description, std::string_view new_h
bool cfg_rpcn::del_host(std::string_view del_description, std::string_view del_host)
{
// Do not delete default servers
if ((del_description == "Official RPCN Server" && del_host == "np.rpcs3.net") ||
(del_description == "RPCN Test Server" && del_host == "test-np.rpcs3.net"))
// Do not delete default server
if (del_description == "Official RPCN Server" && del_host == "np.rpcs3.net")
{
return true;
}

View File

@ -9,7 +9,7 @@ struct cfg_rpcn : cfg::node
cfg::string npid{this, "NPID", ""};
cfg::string password{this, "Password", ""};
cfg::string token{this, "Token", ""};
cfg::string hosts{this, "Hosts", "Official RPCN Server|np.rpcs3.net|||RPCN Test Server|test-np.rpcs3.net"};
cfg::string hosts{this, "Hosts", "Official RPCN Server|np.rpcs3.net"};
cfg::_bool ipv6_support{this, "IPv6 support", true};
void load();