Fix custom tab API to allow using as soon as constructed

This commit is contained in:
md_5
2013-06-16 15:40:31 +10:00
parent fbf2d8969e
commit 92c3ef1989
4 changed files with 10 additions and 4 deletions

View File

@@ -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);
}

View File

@@ -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