Removed dependency on the ServerListPing class from faucet

This commit is contained in:
Jaime Martinez Rincon 2017-08-08 20:33:18 +02:00
parent 59dd26c4a3
commit 46b7971934
2 changed files with 4 additions and 3 deletions

View File

@ -7,7 +7,6 @@
- [x] Get dummy sections able to have already registered servers on other sections
- [x] Add a new message for when a player gets connected to a server and repurpose the connecting one
- [ ] Add support for wildcards, contains, equalsIgnoreCase and regex at the same time
- [ ] Add a identifier to get the servers of a section (auto complete)
- [x] Add tooltip when you hover over a server in /section info
- [ ] Stop using inventivetalent's deprecated bungee-update
- [ ] Create a LobbyBalancer spigot addon that adds connector signs and placeholders
@ -15,7 +14,9 @@
- [ ] Make the plugin API not be so dependent on a instance of LobbyBalancer
- [ ] Separate connection providers in classes instead of being hardcoded in an enum
- [ ] Make the feature `marker-descs` work per section
- [ ] Add a identifier to get the servers of a section (auto complete)
- [ ] Implement fast connect (dimension change)
- [ ] Implement a way to redirect premium players to a section and cracked ones to other section (not sure how this works)
- [ ] Unify the code that loads server into a section (duplicated at SectionManager and ServerSection)
- [ ] Unify some of the code used in the FallbackCommand and SectionCommand
- [x] Use https://github.com/kennedyoliveira/pastebin4j instead of jpaste

View File

@ -1,9 +1,9 @@
package me.jaimemartz.lobbybalancer.ping;
import me.jaimemartz.faucet.ServerListPing;
import me.jaimemartz.faucet.StatusResponse;
import me.jaimemartz.lobbybalancer.PlayerBalancer;
import me.jaimemartz.lobbybalancer.configuration.ConfigEntries;
import me.jaimemartz.lobbybalancer.utils.ServerListPing;
import me.jaimemartz.lobbybalancer.utils.ServerListPing.StatusResponse;
import net.md_5.bungee.api.Callback;
import net.md_5.bungee.api.config.ServerInfo;