Fix custom tab API to allow using as soon as constructed
This commit is contained in:
parent
fbf2d8969e
commit
92c3ef1989
@ -245,7 +245,8 @@ public abstract class ProxyServer
|
||||
/**
|
||||
* Gets a new instance of this proxies custom tab list.
|
||||
*
|
||||
* @param player the player to generate this list in the context of
|
||||
* @return a new {@link CustomTabList} instance
|
||||
*/
|
||||
public abstract CustomTabList customTabList();
|
||||
public abstract CustomTabList customTabList(ProxiedPlayer player);
|
||||
}
|
||||
|
@ -2,7 +2,6 @@ package net.md_5.bungee.api.tab;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.NoArgsConstructor;
|
||||
import net.md_5.bungee.api.tab.TabListHandler;
|
||||
import net.md_5.bungee.api.connection.ProxiedPlayer;
|
||||
|
||||
@NoArgsConstructor
|
||||
|
@ -516,8 +516,8 @@ public class BungeeCord extends ProxyServer
|
||||
}
|
||||
|
||||
@Override
|
||||
public CustomTabList customTabList()
|
||||
public CustomTabList customTabList(ProxiedPlayer player)
|
||||
{
|
||||
return new Custom();
|
||||
return new Custom( player );
|
||||
}
|
||||
}
|
||||
|
@ -4,6 +4,7 @@ import com.google.common.base.Preconditions;
|
||||
import java.util.Collection;
|
||||
import java.util.HashSet;
|
||||
import net.md_5.bungee.api.ChatColor;
|
||||
import net.md_5.bungee.api.connection.ProxiedPlayer;
|
||||
import net.md_5.bungee.api.tab.CustomTabList;
|
||||
import net.md_5.bungee.api.tab.TabListAdapter;
|
||||
import net.md_5.bungee.protocol.packet.PacketC9PlayerListItem;
|
||||
@ -26,6 +27,11 @@ public class Custom extends TabListAdapter implements CustomTabList
|
||||
private int rowLim;
|
||||
private int colLim;
|
||||
|
||||
public Custom(ProxiedPlayer player)
|
||||
{
|
||||
this.init( player );
|
||||
}
|
||||
|
||||
@Override
|
||||
public synchronized String setSlot(int row, int column, String text)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user