From d3ff0c3e5a911baafb8cf43023164511cfa33c16 Mon Sep 17 00:00:00 2001 From: mkwcat Date: Fri, 5 Jan 2024 20:24:47 -0500 Subject: [PATCH] QR2: Remove incorrect check in RESERVATION --- qr2/message.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/qr2/message.go b/qr2/message.go index 4550a76..b9a913d 100644 --- a/qr2/message.go +++ b/qr2/message.go @@ -128,12 +128,6 @@ func SendClientMessage(senderIP string, destSearchID uint64, message []byte) { } if message[8] == common.MatchReservation { - if matchData.Reservation.MatchType == 3 { - // TODO: Check that this is correct - logging.Error(moduleName, "RESERVATION: Attempt to join a private room over ServerBrowser") - return - } - if matchData.Reservation.HasPublicIP { if qr2IP != matchData.Reservation.PublicIP { logging.Error(moduleName, "RESERVATION: Public IP mismatch in header and command")