build: Release 6.5.0

This commit is contained in:
NotMyFault 2022-02-10 12:32:02 +01:00
parent d7c8715b25
commit 78125ff1e2
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
6 changed files with 6 additions and 6 deletions

View File

@ -102,7 +102,7 @@ public enum CommandCategory implements Caption {
* *
* @param player The player to check against * @param player The player to check against
* @return {@code true} if at least one command of this category can be executed by the player, {@code false} otherwise * @return {@code true} if at least one command of this category can be executed by the player, {@code false} otherwise
* @since TODO * @since 6.5.0
*/ */
boolean canAccess(PlotPlayer<?> player) { boolean canAccess(PlotPlayer<?> player) {
return !MainCommand.getInstance().getCommands(this, player).isEmpty(); return !MainCommand.getInstance().getCommands(this, player).isEmpty();

View File

@ -121,7 +121,7 @@ public class PlotInventory {
* @param item the item to place * @param item the item to place
* @return {@code true} if the item could be placed, otherwise {@code false} * @return {@code true} if the item could be placed, otherwise {@code false}
* @see InventoryUtil#setItemChecked(PlotInventory, int, PlotItemStack) * @see InventoryUtil#setItemChecked(PlotInventory, int, PlotItemStack)
* @since TODO * @since 6.5.0
*/ */
public boolean setItemChecked(int index, PlotItemStack item) { public boolean setItemChecked(int index, PlotItemStack item) {
if (!this.inventoryUtil.setItemChecked(this, index, item)) { if (!this.inventoryUtil.setItemChecked(this, index, item)) {

View File

@ -54,7 +54,7 @@ public class PlotItemStack {
* @param amount Amount of items in the stack * @param amount Amount of items in the stack
* @param name The display name of the item stack * @param name The display name of the item stack
* @param lore The item stack lore * @param lore The item stack lore
* @since TODO * @since 6.5.0
*/ */
public PlotItemStack( public PlotItemStack(
final ItemType type, final int amount, final String name, final ItemType type, final int amount, final String name,

View File

@ -45,7 +45,7 @@ public abstract class InventoryUtil {
* @param index The index where to place the item * @param index The index where to place the item
* @param item The item to place into the inventory * @param item The item to place into the inventory
* @return {@code true} if the item could be placed, {@code false} otherwise (e.g. item not available in current version) * @return {@code true} if the item could be placed, {@code false} otherwise (e.g. item not available in current version)
* @since TODO * @since 6.5.0
*/ */
public abstract boolean setItemChecked( public abstract boolean setItemChecked(
final PlotInventory plotInventory, final int index, final PlotInventory plotInventory, final int index,

View File

@ -18,7 +18,7 @@ plugins {
idea idea
} }
version = "6.4.1-SNAPSHOT" version = "6.5.0"
allprojects { allprojects {
group = "com.plotsquared" group = "com.plotsquared"

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists