The Replay Viewer now loads its entries asynchronously to prevent Minecraft from freezing whenever the Replay Viewer is opened
This commit is contained in:
@@ -121,7 +121,11 @@ public class GuiUploadFile extends GuiScreen {
|
||||
|
||||
@Override
|
||||
public void initGui() {
|
||||
if(replayFile == null) return;
|
||||
if(replayFile == null) {
|
||||
mc.displayGuiScreen(parent);
|
||||
return;
|
||||
}
|
||||
|
||||
if(!AuthenticationHandler.isAuthenticated()) {
|
||||
mc.displayGuiScreen(new GuiLoginPrompt(parent, this));
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user