Restore cave generation + adjust ore spawn rates

This commit is contained in:
mschiller890
2026-03-13 22:15:30 +01:00
parent 13dcf593d8
commit 94f4317b71
4 changed files with 28 additions and 30 deletions

View File

@@ -58,6 +58,8 @@
#include "player/input/XperiaPlayInput.h"
#endif
#include "renderer/Chunk.h"
#include "player/input/MouseTurnInput.h"
#include "../world/entity/MobFactory.h"
#include "../world/level/MobSpawner.h"
@@ -755,13 +757,6 @@ void Minecraft::tickInput() {
*/
}
#endif
#if defined(WIN32)
if (key == Keyboard::KEY_F) {
options.isFlying = !options.isFlying;
player->noPhysics = options.isFlying;
}
if (key == Keyboard::KEY_L)
options.viewDistance = (options.viewDistance + 1) % 4;