Skip to content

Commit

Permalink
Release 6.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Sep 21, 2022
1 parent 8deeef4 commit 60d266b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ public void logout(UUID uuid) {
* @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<>());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1020,7 +1020,7 @@ public boolean equals(final Object obj) {
* 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);

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
}

group = "com.plotsquared"
version = "6.9.5-SNAPSHOT"
version = "6.10.0"

subprojects {
group = rootProject.group
Expand Down

0 comments on commit 60d266b

Please sign in to comment.