mirror of
https://github.com/arcadiadevs/hubcore.git
synced 2024-11-22 06:15:14 +01:00
Server gui fixes
This commit is contained in:
parent
dc210c412c
commit
4eff81f493
@ -43,7 +43,7 @@ public class SelectorGui {
|
||||
|
||||
List<ServerRecord> filteredServers = new ArrayList<>(records);
|
||||
|
||||
filteredServers.sort(Comparator.comparing(s -> s.online() ? 1 : 0));
|
||||
filteredServers.sort(Comparator.comparing(s -> s.online() ? 0 : 1));
|
||||
|
||||
List<ServerRecord> filteredServersByPlayers = new ArrayList<>(filteredServers);
|
||||
|
||||
@ -86,6 +86,7 @@ public class SelectorGui {
|
||||
|
||||
ItemStack item = itemBuilder
|
||||
.lore(online ? onlineLore : offlineLore)
|
||||
.skullOwner(server.name() == null ? "" : server.name())
|
||||
.build();
|
||||
|
||||
menu.addButton(new SGButton(item).withListener(
|
||||
|
Loading…
Reference in New Issue
Block a user