From d65f7f2745c97983e35a74bbdada3f773f7d39a4 Mon Sep 17 00:00:00 2001 From: Ryan <80224521+Rxann@users.noreply.github.com> Date: Thu, 9 May 2024 09:10:56 -0400 Subject: [PATCH] Fix the Radio Sync Fix (#3060) --- src/hooks/protections/receive_net_message.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hooks/protections/receive_net_message.cpp b/src/hooks/protections/receive_net_message.cpp index 1643f3db..b498c9fe 100644 --- a/src/hooks/protections/receive_net_message.cpp +++ b/src/hooks/protections/receive_net_message.cpp @@ -243,10 +243,10 @@ namespace big { // Make a translation for this new OOM kick protection g_notification_service.push_error("PROTECTIONS"_T.data(), "OOM_KICK"_T.data()); - return true; } + return true; } - return false; + break; } } }