22 lines
532 B
Java
22 lines
532 B
Java
/*
|
|
* Copyright (C) 2024 Minecon724
|
|
* Tweaks724 is licensed under the GNU General Public License. See the LICENSE.md file
|
|
* in the project root for the full license text.
|
|
*/
|
|
|
|
package eu.m724.tweaks.ping;
|
|
|
|
import org.bukkit.plugin.Plugin;
|
|
|
|
public class PingChecker {
|
|
private final Plugin plugin;
|
|
|
|
public PingChecker(Plugin plugin) {
|
|
this.plugin = plugin;
|
|
}
|
|
|
|
public void init() {
|
|
new KeepAlivePingChecker(plugin).start();
|
|
new MsptChecker().init(plugin); // TODO should this be here
|
|
}
|
|
}
|