minor crap

master
PF94 2020-11-29 00:31:26 -05:00
parent 8985e0bf6e
commit a16c0ea2eb
2 changed files with 2 additions and 1 deletions

BIN
level.dat

Binary file not shown.

View File

@ -14,6 +14,7 @@ public class MinecraftApplet extends Applet
private Canvas canvas; private Canvas canvas;
private Minecraft minecraft; private Minecraft minecraft;
private Thread thread; private Thread thread;
static JMenuBar mb;
public MinecraftApplet() { public MinecraftApplet() {
this.thread = null; this.thread = null;
@ -34,7 +35,7 @@ public class MinecraftApplet extends Applet
super.removeNotify(); super.removeNotify();
} }
}; };
this.minecraft = new Minecraft(this.canvas, this.getWidth(), this.getHeight(), false); this.minecraft = new Minecraft(this.canvas, this.getWidth(), this.getHeight(), true);
this.minecraft.appletMode = true; this.minecraft.appletMode = true;
this.setLayout(new BorderLayout()); this.setLayout(new BorderLayout());
this.add(this.canvas, "Center"); this.add(this.canvas, "Center");