mirror of
https://github.com/plexusorg/Plex.git
synced 2025-04-06 11:13:14 +00:00
39 lines
986 B
Java
39 lines
986 B
Java
package dev.plex.services.impl;
|
|
|
|
import dev.plex.Plex;
|
|
import dev.plex.services.AbstractService;
|
|
import java.time.LocalDateTime;
|
|
import net.kyori.adventure.text.Component;
|
|
import org.bukkit.Bukkit;
|
|
|
|
public class BanService extends AbstractService
|
|
{
|
|
public BanService()
|
|
{
|
|
super(true, true);
|
|
}
|
|
|
|
@Override
|
|
public void run()
|
|
{
|
|
Plex.get().getPunishmentManager().getActiveBans().whenComplete((punishments, throwable) ->
|
|
{
|
|
punishments.forEach(punishment ->
|
|
{
|
|
if (LocalDateTime.now().isAfter(punishment.getEndDate()))
|
|
{
|
|
Plex.get().getPunishmentManager().unban(punishment);
|
|
Bukkit.broadcast(Component.text("Plex - Unbanned " + Bukkit.getOfflinePlayer(punishment.getPunished()).getName()));
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
@Override
|
|
public int repeatInSeconds()
|
|
{
|
|
// Every 5 minutes
|
|
return 300;
|
|
}
|
|
}
|