https://github.com/Developer-Mike/minecraft-bedrock-generator
Lets you generate any region of Bedrock in a Minecraft world using a few lines of code.
https://github.com/Developer-Mike/minecraft-bedrock-generator
Last synced: 8 months ago
JSON representation
Lets you generate any region of Bedrock in a Minecraft world using a few lines of code.
- Host: GitHub
- URL: https://github.com/Developer-Mike/minecraft-bedrock-generator
- Owner: Developer-Mike
- License: mit
- Created: 2025-03-01T15:40:07.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-29T20:33:29.000Z (about 1 year ago)
- Last Synced: 2025-03-29T21:26:58.621Z (about 1 year ago)
- Language: Java
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Minecraft Bedrock Finder (1.18-1.21)
This repo contains the code snippet to generate a Minecraft map of the Bedrock for a given seed in a given region.
## Usage
This code is just a demo and needs to be modified to be used effectively.
The main class is the [`BedrockReader`](https://github.com/Developer-Mike/minecraft-bedrock-generator/blob/main/src/main/java/com/mike/BedrockReader.java) class and has a `.isBedrock(int x, int y, int z)` method that returns true if the block at the given coordinates is bedrock.
```java
BedrockReader bedrockReader = new BedrockReader(seed);
boolean bedrock = bedrockReader.isBedrock(x, y, z);
```
To compile the code to a jar file, you can use the following command:
```bash
mvn package
```