build: Release 6.6.0

This commit is contained in:
NotMyFault
2022-03-07 15:35:00 +01:00
parent dc13f2565f
commit fd4a542062
17 changed files with 25 additions and 25 deletions

View File

@ -67,7 +67,7 @@ public class GenChunk extends ScopedQueueCoordinator {
* @param minY minimum world Y, inclusive
* @param maxY maximum world Y, inclusive
*
* @since TODO
* @since 6.6.0
*/
public GenChunk(int minY, int maxY) {
super(null, Location.at("", 0, minY, 0), Location.at("", 15, maxY, 15));

View File

@ -88,7 +88,7 @@ public class BukkitWorld implements World<org.bukkit.World> {
/**
* Get the min world height from a Bukkit {@link org.bukkit.World}. Inclusive
*
* @since TODO
* @since 6.6.0
*/
public static int getMinWorldHeight(org.bukkit.World world) {
return HAS_MIN_Y ? world.getMinHeight() : 0;
@ -97,7 +97,7 @@ public class BukkitWorld implements World<org.bukkit.World> {
/**
* Get the max world height from a Bukkit {@link org.bukkit.World}. Exclusive
*
* @since TODO
* @since 6.6.0
*/
public static int getMaxWorldHeight(org.bukkit.World world) {
return HAS_MIN_Y ? world.getMaxHeight() : 256;
@ -143,7 +143,7 @@ public class BukkitWorld implements World<org.bukkit.World> {
/**
* @deprecated This method is not meant to be invoked or overridden, with no replacement.
*/
@Deprecated(forRemoval = true, since = "TODO")
@Deprecated(forRemoval = true, since = "6.6.0")
protected boolean canEqual(final Object other) {
return other instanceof BukkitWorld;
}