Hide rewind queue warnings if not connection debug
This commit is contained in:
parent
9e06fe9b6f
commit
f34e0e9dc0
@ -21,6 +21,7 @@
|
|||||||
#include "config/stk_config.hpp"
|
#include "config/stk_config.hpp"
|
||||||
#include "modes/world.hpp"
|
#include "modes/world.hpp"
|
||||||
#include "network/dummy_rewinder.hpp"
|
#include "network/dummy_rewinder.hpp"
|
||||||
|
#include "network/network.hpp"
|
||||||
#include "network/network_config.hpp"
|
#include "network/network_config.hpp"
|
||||||
#include "network/rewinder.hpp"
|
#include "network/rewinder.hpp"
|
||||||
#include "network/rewind_info.hpp"
|
#include "network/rewind_info.hpp"
|
||||||
@ -246,8 +247,12 @@ void RewindQueue::mergeNetworkData(int world_ticks, bool *needs_rewind,
|
|||||||
// player might have a network hickup).
|
// player might have a network hickup).
|
||||||
if (NetworkConfig::get()->isServer() && (*i)->getTicks() < world_ticks)
|
if (NetworkConfig::get()->isServer() && (*i)->getTicks() < world_ticks)
|
||||||
{
|
{
|
||||||
Log::warn("RewindQueue", "Server received at %d message from %d",
|
if (Network::m_connection_debug)
|
||||||
|
{
|
||||||
|
Log::warn("RewindQueue",
|
||||||
|
"Server received at %d message from %d",
|
||||||
world_ticks, (*i)->getTicks());
|
world_ticks, (*i)->getTicks());
|
||||||
|
}
|
||||||
// Server received an event in the past. Adjust this event
|
// Server received an event in the past. Adjust this event
|
||||||
// to be executed 'now' - at least we get a bit closer to the
|
// to be executed 'now' - at least we get a bit closer to the
|
||||||
// client state.
|
// client state.
|
||||||
|
Loading…
Reference in New Issue
Block a user