Release 6.10.0

This commit is contained in:
Alexander Brandes 2022-09-21 16:28:17 +02:00
parent 8deeef4f7d
commit 60d266b2d7
No known key found for this signature in database
GPG Key ID: 158F5701A6AAD00C
3 changed files with 3 additions and 3 deletions

View File

@ -502,7 +502,7 @@ public class PlotListener {
* @param uuid The uuid of the player the effect belongs to * @param uuid The uuid of the player the effect belongs to
* @param name The name of the status effect * @param name The name of the status effect
* @param expiresAt The time when the effect expires * @param expiresAt The time when the effect expires
* @since TODO * @since 6.10.0
*/ */
public void addEffect(@NonNull UUID uuid, @NonNull String name, long expiresAt) { public void addEffect(@NonNull UUID uuid, @NonNull String name, long expiresAt) {
List<StatusEffect> effects = playerEffects.getOrDefault(uuid, new ArrayList<>()); List<StatusEffect> effects = playerEffects.getOrDefault(uuid, new ArrayList<>());

View File

@ -1020,7 +1020,7 @@ public abstract class PlotPlayer<P> implements CommandCaller, OfflinePlotPlayer,
* Removes any effects present of the given type. * Removes any effects present of the given type.
* *
* @param name the name of the type to remove * @param name the name of the type to remove
* @since TODO * @since 6.10.0
*/ */
public abstract void removeEffect(@NonNull String name); public abstract void removeEffect(@NonNull String name);

View File

@ -19,7 +19,7 @@ plugins {
} }
group = "com.plotsquared" group = "com.plotsquared"
version = "6.9.5-SNAPSHOT" version = "6.10.0"
subprojects { subprojects {
group = rootProject.group group = rootProject.group