mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-21 20:56:45 +01:00
build: Release 6.5.0
This commit is contained in:
parent
d7c8715b25
commit
78125ff1e2
@ -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();
|
||||||
|
@ -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)) {
|
||||||
|
@ -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,
|
||||||
|
@ -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,
|
||||||
|
@ -18,7 +18,7 @@ plugins {
|
|||||||
idea
|
idea
|
||||||
}
|
}
|
||||||
|
|
||||||
version = "6.4.1-SNAPSHOT"
|
version = "6.5.0"
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
group = "com.plotsquared"
|
group = "com.plotsquared"
|
||||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user