diff --git a/Plugins/Mineplex.Game.Nano/src/mineplex/game/nano/lobby/AFKManager.java b/Plugins/Mineplex.Game.Nano/src/mineplex/game/nano/lobby/AFKManager.java index 38da446f4..eb6e67291 100644 --- a/Plugins/Mineplex.Game.Nano/src/mineplex/game/nano/lobby/AFKManager.java +++ b/Plugins/Mineplex.Game.Nano/src/mineplex/game/nano/lobby/AFKManager.java @@ -70,7 +70,7 @@ public class AFKManager extends MiniClientPlugin @EventHandler public void updateAFK(UpdateEvent event) { - if (event.getType() != UpdateType.SEC || _manager.getGame() == null) + if (event.getType() != UpdateType.FAST || _manager.getGame() == null) { return; } @@ -95,7 +95,7 @@ public class AFKManager extends MiniClientPlugin if (location.getWorld().equals(data.Last.getWorld())) { - if (UtilMath.offsetSquared(location, data.Last) > 1) + if (UtilMath.offsetSquared(location, data.Last) > 0.1) { data.LastMovement = System.currentTimeMillis(); data.Informed = false;