Remove hardcoded IP whitelist for master server

With the master server being moved, this hardcoded IP is no longer
valid.
This commit is contained in:
John Marion 2016-05-08 15:49:28 -07:00 committed by Mikkel Krautz
parent a30f1dd445
commit 6123439d1b

View File

@ -673,9 +673,6 @@ bool Meta::banCheck(const QHostAddress &addr) {
if ((mp.iBanTries == 0) || (mp.iBanTimeframe == 0))
return false;
if (addr.toIPv4Address() == ((128U << 24) | (39U << 16) | (114U << 8) | 1U))
return false;
if (qhBans.contains(addr)) {
Timer t = qhBans.value(addr);
if (t.elapsed() < (1000000ULL * mp.iBanTime))