mirror of
https://gitlab.bixilon.de/bixilon/minosoft.git
synced 2025-09-16 10:55:01 -04:00
ignore tab list sorting errors for now
This commit is contained in:
parent
04886a4aeb
commit
bcda72cc66
@ -117,7 +117,11 @@ class TabListElement(guiRenderer: GUIRenderer) : Element(guiRenderer), LayoutedE
|
|||||||
toRender += entries.toSynchronizedMap().values
|
toRender += entries.toSynchronizedMap().values
|
||||||
|
|
||||||
lock.lock()
|
lock.lock()
|
||||||
|
try {
|
||||||
toRender.sort()
|
toRender.sort()
|
||||||
|
} catch (error: Throwable) {
|
||||||
|
// TODO: this should not happen
|
||||||
|
}
|
||||||
lock.unlock()
|
lock.unlock()
|
||||||
|
|
||||||
// Minecraft limits it to 80 items. Imho this is removing a feature, but some servers use a custom tab list plugin and then players are duplicated, etc
|
// Minecraft limits it to 80 items. Imho this is removing a feature, but some servers use a custom tab list plugin and then players are duplicated, etc
|
||||||
|
Loading…
x
Reference in New Issue
Block a user