From 6de3640243e45cf369258ad4e2f8dab727a13a95 Mon Sep 17 00:00:00 2001 From: cnr Date: Sun, 11 Sep 2016 17:54:50 -0500 Subject: [PATCH] Disable immediate ban actions for Glide and Speed --- .../src/mineplex/core/antihack/actions/AntiHackAction.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/antihack/actions/AntiHackAction.java b/Plugins/Mineplex.Core/src/mineplex/core/antihack/actions/AntiHackAction.java index ddcc5e909..f0710e52f 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/antihack/actions/AntiHackAction.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/antihack/actions/AntiHackAction.java @@ -3,8 +3,6 @@ package mineplex.core.antihack.actions; import com.mineplex.anticheat.api.PlayerViolationEvent; import com.mineplex.anticheat.checks.combat.KillauraTypeA; import com.mineplex.anticheat.checks.combat.KillauraTypeD; -import com.mineplex.anticheat.checks.move.Glide; -import com.mineplex.anticheat.checks.move.Speed; import mineplex.core.common.util.UtilServer; import org.bukkit.event.Listener; @@ -24,8 +22,6 @@ public abstract class AntiHackAction implements Listener { ACTIONS.put(KillauraTypeA.class, new ImmediateBanAction(200)); ACTIONS.put(KillauraTypeD.class, new BanwaveAction(2000)); - ACTIONS.put(Glide.class, new ImmediateBanAction(10000)); - ACTIONS.put(Speed.class, new ImmediateBanAction(10000)); } private int _vl;