and it doesnt work

master
PF94 2020-11-22 01:04:51 -05:00
parent e78aa753db
commit 460188ae6b
2 changed files with 0 additions and 34 deletions

BIN
level.dat

Binary file not shown.

View File

@ -162,40 +162,6 @@ public class Minecraft implements Runnable, LevelLoaderListener
imgData.clear().limit(256);
GL11.glViewport(0, 0, this.width, this.height);
this.setScreen(new MenuScreen());
/* this.level = new Level();
boolean success = false;
try {
success = this.levelIo.load(this.level, new FileInputStream(new File("level.dat")));
if (!success) {
success = this.levelIo.loadLegacy(this.level, new FileInputStream(new File("level.dat")));
}
}
catch (Exception e3) {
success = false;
}
if (!success) {
this.levelGen.generateLevel(this.level, this.user.name, 256, 256, 64);
}
this.levelRenderer = new LevelRenderer(this.level, this.textures);
this.player = new Player(this.level);
this.particleEngine = new ParticleEngine(this.level, this.textures);
for (int i = 0; i < 10; ++i) {
final Zombie zombie = new Zombie(this.level, this.textures, 128.0f, 0.0f, 128.0f);
zombie.resetPos();
this.entities.add(zombie);
}
if (this.appletMode) {
try {
this.emptyCursor = new Cursor(16, 16, 0, 0, 1, imgData, (IntBuffer)null);
}
catch (LWJGLException e2) {
e2.printStackTrace();
}
}
this.checkGlError("Post startup");*/
}
public void startGame() {
this.level = new Level();
boolean success = false;
try {