mirror of
https://gitlab.bixilon.de/bixilon/minosoft.git
synced 2025-09-15 18:34:56 -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
|
||||
|
||||
lock.lock()
|
||||
toRender.sort()
|
||||
try {
|
||||
toRender.sort()
|
||||
} catch (error: Throwable) {
|
||||
// TODO: this should not happen
|
||||
}
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user