Fix wrong access modifier

This commit is contained in:
AlexDev_ 2023-11-09 16:15:05 +01:00
parent 3d3f3a3bfa
commit 7eb8f2dbd1

View File

@ -54,19 +54,19 @@ public class PlayerAddedToTabEvent {
@NotNull
@Deprecated(forRemoval = true)
private TabPlayer player() {
public TabPlayer player() {
return this.player;
}
@NotNull
@Deprecated(forRemoval = true)
private String group() {
public String group() {
return this.group;
}
@NotNull
@Deprecated(forRemoval = true)
private List<String> groupServers() {
public List<String> groupServers() {
return this.groupServers;
}
}