Add ifdef debug around handle debug options (#1382)

This commit is contained in:
itsRevela 2026-03-23 11:57:15 -05:00
parent d7c0830eb4
commit a4ca19ff17

View file

@ -1630,8 +1630,10 @@ bool PlayerConnection::isDisconnected()
void PlayerConnection::handleDebugOptions(shared_ptr<DebugOptionsPacket> packet) void PlayerConnection::handleDebugOptions(shared_ptr<DebugOptionsPacket> packet)
{ {
//Player player = dynamic_pointer_cast<Player>( player->shared_from_this() ); #ifdef _DEBUG
player->SetDebugOptions(packet->m_uiVal); // Player player = dynamic_pointer_cast<Player>( player->shared_from_this() );
player->SetDebugOptions(packet->m_uiVal);
#endif
} }
void PlayerConnection::handleCraftItem(shared_ptr<CraftItemPacket> packet) void PlayerConnection::handleCraftItem(shared_ptr<CraftItemPacket> packet)