Merge pull request #95 from Rackover/rcon_hotfix

Rcon hotfix
This commit is contained in:
Dss0 2021-07-18 12:32:06 +02:00 committed by GitHub
commit f4dbd26897
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -121,7 +121,7 @@ namespace Components
}
bool Network::Address::isValid()
{
return (this->getType() != Game::netadrtype_t::NA_BAD && this->getType() >= Game::netadrtype_t::NA_BOT && this->getType() <= Game::netadrtype_t::NA_IP && this->address.ip.full != 0);
return (this->getType() != Game::netadrtype_t::NA_BAD && this->getType() >= Game::netadrtype_t::NA_BOT && this->getType() <= Game::netadrtype_t::NA_IP);
}
void Network::Handle(const std::string& packet, Utils::Slot<Network::Callback> callback)
{

View File

@ -29,7 +29,7 @@ namespace Components
if (!RCon::Password.empty())
{
Network::Address target(addr);
if (!target.isValid())
if (!target.isValid() || target.getIP().full == 0)
{
target = Party::Target();
}