This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Description
This happens when
Collections.sort((List)this.worldRenderersToUpdate, (Comparator)new RenderSorter(entityPlayer));
in RenderGlobal.updateRenderers() throws an IllegalArgumentException.
I suggest replacing
catch (IllegalArgumentException ex) {
System.out.println("NOT THIS TIME TIMOTHY");
}
with
catch (IllegalArgumentException ex) {
MinecraftServer.logger.log(Level.SEVERE, "Error updating renderers", ex);
}