mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-21 20:56:45 +01:00
Release 7.2.0
This commit is contained in:
parent
e3bfd9b8bf
commit
fdc887850c
@ -71,7 +71,7 @@ public class ServerListener implements Listener {
|
||||
/**
|
||||
* Internal use only. Required to implement lazy econ loading using Guice.
|
||||
*
|
||||
* @since TODO
|
||||
* @since 7.2.0
|
||||
*/
|
||||
public interface MutableEconHandler {
|
||||
void setImplementation(EconHandler econHandler);
|
||||
|
@ -58,7 +58,7 @@ public enum Direction {
|
||||
/**
|
||||
* {@return the opposite direction}
|
||||
* If this is {@link Direction#ALL}, then {@link Direction#ALL} is returned.
|
||||
* @since TODO
|
||||
* @since 7.2.0
|
||||
*/
|
||||
public Direction opposite() {
|
||||
return switch (this) {
|
||||
|
@ -942,7 +942,7 @@ public abstract class PlotArea implements ComponentLike {
|
||||
* @return The border distance or Integer.MAX_VALUE if no border is set
|
||||
* @deprecated Use {@link PlotArea#getBorder(boolean)}
|
||||
*/
|
||||
@Deprecated(forRemoval = true, since = "TODO")
|
||||
@Deprecated(forRemoval = true, since = "7.2.0")
|
||||
public int getBorder() {
|
||||
final Integer meta = (Integer) getMeta("worldBorder");
|
||||
if (meta != null) {
|
||||
@ -962,7 +962,7 @@ public abstract class PlotArea implements ComponentLike {
|
||||
*
|
||||
* @param getExtended If the extra border given by world.border-size should be included
|
||||
* @return Border distance of Integer.MAX_VALUE if no border is set
|
||||
* @since TODO
|
||||
* @since 7.2.0
|
||||
*/
|
||||
public int getBorder(boolean getExtended) {
|
||||
final Integer meta = (Integer) getMeta("worldBorder");
|
||||
@ -1240,7 +1240,7 @@ public abstract class PlotArea implements ComponentLike {
|
||||
* Get the "extra border" size of the plot area.
|
||||
*
|
||||
* @return Plot area extra border size
|
||||
* @since TODO
|
||||
* @since 7.2.0
|
||||
*/
|
||||
public int getBorderSize() {
|
||||
return borderSize;
|
||||
|
@ -22,7 +22,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = "com.intellectualsites.plotsquared"
|
||||
version = "7.1.1-SNAPSHOT"
|
||||
version = "7.2.0"
|
||||
|
||||
if (!File("$rootDir/.git").exists()) {
|
||||
logger.lifecycle("""
|
||||
|
Loading…
Reference in New Issue
Block a user