PF94 2020-11-22 19:40:42 -05:00
parent 9d1cef536c
commit f7da015511
2 changed files with 3 additions and 2 deletions

View File

@ -55,6 +55,7 @@ public class PauseScreen extends Screen
attemptSaveLevel();
this.minecraft.setScreen(null);
this.minecraft.grabMouse();
System.out.println("Level saved?");
}
if (button.id == 3) {
this.minecraft.setScreen(null);

View File

@ -25,8 +25,8 @@ public class Screen
public void init(final Minecraft minecraft, final int width, final int height) {
this.minecraft = minecraft;
this.width = 800;
this.height = 800;
this.width = width;
this.height = height;
this.init();
}