Not just block changes.

This commit is contained in:
asofold 2014-07-18 02:15:49 +02:00
parent db7ac2bd80
commit 27d35c1208

View File

@ -604,7 +604,7 @@ public class MovingListener extends CheckListener implements TickListener, IRemo
if (newTo == null && cc.morePacketsCheck && !NCPExemptionManager.isExempted(player, CheckType.MOVING_MOREPACKETS) && !player.hasPermission(Permissions.MOVING_MOREPACKETS)) {
// If it hasn't been stopped by any other check and is handled by the more packets check, execute it.
// TODO: Still feed morepackets even if cancelled.
if (pFrom.manhattan(pTo) > 0.0) {
if (TrigUtil.distanceSquared(pFrom, pTo) > 0.0) {
newTo = morePackets.check(player, pFrom, pTo, data, cc);
}
} else {