mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2024-11-01 16:20:26 +01:00
Bind chunk loading debug messages to the debug flag as well.
This commit is contained in:
parent
a493da7ff7
commit
00a240ff9a
@ -1253,7 +1253,7 @@ public class MovingListener extends CheckListener implements TickListener, IRemo
|
|||||||
// Check loaded chunks.
|
// Check loaded chunks.
|
||||||
if (cc.loadChunksOnJoin){
|
if (cc.loadChunksOnJoin){
|
||||||
final int loaded = BlockCache.ensureChunksLoaded(loc.getWorld(), loc.getX(), loc.getZ(), 3.0);
|
final int loaded = BlockCache.ensureChunksLoaded(loc.getWorld(), loc.getX(), loc.getZ(), 3.0);
|
||||||
if (loaded > 0 && BuildParameters.debugLevel > 0){
|
if (loaded > 0 && cc.debug && BuildParameters.debugLevel > 0){
|
||||||
// DEBUG
|
// DEBUG
|
||||||
LogUtil.logInfo("[NoCheatPlus] Player join: Loaded " + loaded + " chunk" + (loaded == 1 ? "" : "s") + " for the world " + loc.getWorld().getName() + " for player: " + player.getName());
|
LogUtil.logInfo("[NoCheatPlus] Player join: Loaded " + loaded + " chunk" + (loaded == 1 ? "" : "s") + " for the world " + loc.getWorld().getName() + " for player: " + player.getName());
|
||||||
}
|
}
|
||||||
@ -1400,7 +1400,7 @@ public class MovingListener extends CheckListener implements TickListener, IRemo
|
|||||||
final boolean res;
|
final boolean res;
|
||||||
// TODO: Collect flags, more margin ?
|
// TODO: Collect flags, more margin ?
|
||||||
final int loaded = info.from.ensureChunksLoaded();
|
final int loaded = info.from.ensureChunksLoaded();
|
||||||
if (loaded > 0 && BuildParameters.debugLevel > 0){
|
if (loaded > 0 && cc.debug && BuildParameters.debugLevel > 0){
|
||||||
// DEBUG
|
// DEBUG
|
||||||
LogUtil.logInfo("[NoCheatPlus] Hover check: Needed to load " + loaded + " chunk" + (loaded == 1 ? "" : "s") + " for the world " + loc.getWorld().getName() + " around " + loc.getBlockX() + "," + loc.getBlockZ() + " in order to check player: " + player.getName());
|
LogUtil.logInfo("[NoCheatPlus] Hover check: Needed to load " + loaded + " chunk" + (loaded == 1 ? "" : "s") + " for the world " + loc.getWorld().getName() + " around " + loc.getBlockX() + "," + loc.getBlockZ() + " in order to check player: " + player.getName());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user