2025-11-24 22:52:51 +03:00

35 lines
1.2 KiB
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* org.jspecify.annotations.Nullable
*/
package net.minecraft.client.gui.components.debug;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.components.debug.DebugScreenDisplayer;
import net.minecraft.client.gui.components.debug.DebugScreenEntry;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.chunk.LevelChunk;
import org.jspecify.annotations.Nullable;
public class DebugEntryChunkSourceStats
implements DebugScreenEntry {
@Override
public void display(DebugScreenDisplayer displayer, @Nullable Level serverOrClientLevel, @Nullable LevelChunk clientChunk, @Nullable LevelChunk serverChunk) {
Minecraft minecraft = Minecraft.getInstance();
if (minecraft.level != null) {
displayer.addLine(minecraft.level.gatherChunkSourceStats());
}
if (serverOrClientLevel != null && serverOrClientLevel != minecraft.level) {
displayer.addLine(serverOrClientLevel.gatherChunkSourceStats());
}
}
@Override
public boolean isAllowed(boolean reducedDebugInfo) {
return true;
}
}