Release 6.10.0

This commit is contained in:
Alexander Brandes
2022-09-21 16:28:17 +02:00
parent 8deeef4f7d
commit 60d266b2d7
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 name The name of the status effect
* @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) {
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.
*
* @param name the name of the type to remove
* @since TODO
* @since 6.10.0
*/
public abstract void removeEffect(@NonNull String name);