Changing names of velocity checks

This commit is contained in:
Dawson
2022-09-13 13:50:59 -04:00
parent 4963025825
commit aa24a71c84
2 changed files with 2 additions and 2 deletions
@@ -8,7 +8,7 @@ import dev.brighten.ac.data.APlayer;
import dev.brighten.ac.packet.wrapper.in.WPacketPlayInFlying;
import org.bukkit.util.Vector;
@CheckData(name = "Velocity (A)", checkId = "velocitya", type = CheckType.MOVEMENT)
@CheckData(name = "Velocity (Vertical)", checkId = "velocitya", type = CheckType.MOVEMENT)
public class VelocityA extends Check {
private Vector currentVelocity = null;
@@ -20,7 +20,7 @@ import org.bukkit.potion.PotionEffectType;
import java.util.Deque;
@CheckData(name = "Velocity (B)", checkId = "velocityb", type = CheckType.MOVEMENT)
@CheckData(name = "Velocity (Horizontal)", checkId = "velocityb", type = CheckType.MOVEMENT)
public class VelocityB extends Check {
private Timer lastVelocity = new TickTimer();