Increase tablist packet remove delay

This commit is contained in:
fullwall 2018-06-07 16:57:37 +08:00
parent 3f22903b04
commit ecd6df2e15
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -8,6 +8,7 @@
# Build files # Build files
target/ target/
bin/ bin/
dependency-reduced-pom.xml
*.jar *.jar
*.jardesc *.jardesc
*.lnk *.lnk

View File

@ -249,6 +249,6 @@ public class SkinPacketTracker {
private static final Location CACHE_LOCATION = new Location(null, 0, 0, 0); private static final Location CACHE_LOCATION = new Location(null, 0, 0, 0);
private static PlayerListener LISTENER; private static PlayerListener LISTENER;
private static final int PACKET_DELAY_REMOVE = 1; private static final int PACKET_DELAY_REMOVE = 2;
private static final TabListRemover TAB_LIST_REMOVER = new TabListRemover(); private static final TabListRemover TAB_LIST_REMOVER = new TabListRemover();
} }