mirror of
https://git.zelz.net/catfoolyou/Project164.git
synced 2025-12-15 22:47:41 +00:00
Fix water rendering bug
This commit is contained in:
@@ -11,9 +11,6 @@ import java.util.Date;
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
import net.minecraft.src.AxisAlignedBB;
|
||||
import net.minecraft.src.CallableIsServerModded;
|
||||
import net.minecraft.src.CallableServerMemoryStats;
|
||||
import net.minecraft.src.CallableServerProfiler;
|
||||
import net.minecraft.src.ChunkCoordinates;
|
||||
import net.minecraft.src.CommandBase;
|
||||
import net.minecraft.src.ConvertingProgressUpdate;
|
||||
@@ -817,18 +814,6 @@ public abstract class MinecraftServer implements ICommandSender, Runnable, IPlay
|
||||
*/
|
||||
public CrashReport addServerInfoToCrashReport(CrashReport par1CrashReport)
|
||||
{
|
||||
par1CrashReport.getCategory().addCrashSectionCallable("Profiler Position", new CallableIsServerModded(this));
|
||||
|
||||
if (this.worldServers != null && this.worldServers.length > 0 && this.worldServers[0] != null)
|
||||
{
|
||||
par1CrashReport.getCategory().addCrashSectionCallable("Vec3 Pool Size", new CallableServerProfiler(this));
|
||||
}
|
||||
|
||||
if (this.serverConfigManager != null)
|
||||
{
|
||||
par1CrashReport.getCategory().addCrashSectionCallable("Player Count", new CallableServerMemoryStats(this));
|
||||
}
|
||||
|
||||
return par1CrashReport;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user