From f0f1cdcf2f7acf8e17779348291ac30cbbb63b22 Mon Sep 17 00:00:00 2001 From: Elson Costa Date: Tue, 7 May 2024 11:45:28 -0300 Subject: [PATCH] fixes. --- src/server/network/protocol/protocolgame.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/server/network/protocol/protocolgame.cpp b/src/server/network/protocol/protocolgame.cpp index a404ac9c9a4..db6db014caa 100644 --- a/src/server/network/protocol/protocolgame.cpp +++ b/src/server/network/protocol/protocolgame.cpp @@ -3999,7 +3999,6 @@ void ProtocolGame::sendCyclopediaCharacterTitles() { msg.addByte(title.m_permanent ? 0x01 : 0x00); auto isUnlocked = player->title()->isTitleUnlocked(title.m_id); msg.addByte(isUnlocked ? 0x01 : 0x00); - g_logger().debug("ProtocolGame::addByte - title: {}, unlocked: {}", title.m_id, isUnlocked); } writeToOutputBuffer(msg);