From 7eb8f2dbd13a0cad0ee343ecd2037c6702738e70 Mon Sep 17 00:00:00 2001 From: AlexDev_ Date: Thu, 9 Nov 2023 16:15:05 +0100 Subject: [PATCH] Fix wrong access modifier --- .../net/william278/velocitab/api/PlayerAddedToTabEvent.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/net/william278/velocitab/api/PlayerAddedToTabEvent.java b/src/main/java/net/william278/velocitab/api/PlayerAddedToTabEvent.java index c1075c8..13a2736 100644 --- a/src/main/java/net/william278/velocitab/api/PlayerAddedToTabEvent.java +++ b/src/main/java/net/william278/velocitab/api/PlayerAddedToTabEvent.java @@ -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 groupServers() { + public List groupServers() { return this.groupServers; } }