diff --git a/pom.xml b/pom.xml index 5d4f04e..cc776d9 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 cz.gamesites.mc AntiAFK - 1.0-SNAPSHOT + 1.0 AntiAFK AntiAFK Spigot plugin diff --git a/src/cz/gamesites/mc/antiafk/AntiAFK.java b/src/cz/gamesites/mc/antiafk/AntiAFK.java index fbaa3ad..e869541 100644 --- a/src/cz/gamesites/mc/antiafk/AntiAFK.java +++ b/src/cz/gamesites/mc/antiafk/AntiAFK.java @@ -30,9 +30,9 @@ import net.md_5.bungee.api.ChatColor; public class AntiAFK extends JavaPlugin implements Listener { // frequency of checks - public static final int CHECK_INTERVAL = 20 * 20; + public static final int CHECK_INTERVAL = 60 * 20; // how many times a check has to fail in order to mark the player as AFK - public static final int STRIKES_AFK = 3; + public static final int STRIKES_AFK = 30; private static AntiAFK INSTANCE = null; private HashMap lastPositions = new HashMap<>();