From df4dd762d96bf27c50390b1c6ace3cd5394e19d2 Mon Sep 17 00:00:00 2001 From: Felix Cravic Date: Wed, 25 Nov 2020 10:58:09 +0100 Subject: [PATCH] Minestom is not really an alternative to Bukkit --- .github/README.md | 5 ++--- .../java/net/minestom/server/instance/batch/ChunkBatch.java | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/README.md b/.github/README.md index 93cb8a974..b4858e1c5 100644 --- a/.github/README.md +++ b/.github/README.md @@ -5,10 +5,9 @@ [![standard-readme compliant](https://img.shields.io/badge/readme%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme) [![discord-banner](https://discordapp.com/api/guilds/706185253441634317/widget.png?style=banner2)](https://discord.gg/pkFRvqB) -Minestom is an alternative to the popular Minecraft server API called Bukkit. +Minestom is a complete rewrite of Minecraft server software, open-source and without any code from Mojang. - -The main difference is that our implementation of the Notchian server does not contain any features by default! +The main difference compared to it is that our implementation of the Notchian server does not contain any features by default! However, we have a complete API which allows you to make anything possible with current spigot plugins. This is a developer API not meant to be used by the end-users. Replacing Spigot/Paper with this will **not** work since we do not implement the Bukkit API. diff --git a/src/main/java/net/minestom/server/instance/batch/ChunkBatch.java b/src/main/java/net/minestom/server/instance/batch/ChunkBatch.java index 0d1257d09..2226a69ff 100644 --- a/src/main/java/net/minestom/server/instance/batch/ChunkBatch.java +++ b/src/main/java/net/minestom/server/instance/batch/ChunkBatch.java @@ -22,7 +22,7 @@ import java.util.List; * use a {@link BlockBatch} instead otherwise. * Can be created using {@link Instance#createChunkBatch(Chunk)}. *

- * Use chunk coordinate (0-15) instead of world's. + * Uses chunk coordinate (0-15) instead of world's. * * @see InstanceBatch */