Package fr.neatmonster.nocheatplus.checks.blockbreak

Examples of fr.neatmonster.nocheatplus.checks.blockbreak.BlockBreakData


    // Inventory.
    final InventoryData iData = InventoryData.getData(player);
    ref = Math.max(ref, iData.lastClickTime);
    ref = Math.max(ref, iData.instantEatInteract);
    // BlcokBreak/interact.
    final BlockBreakData bbData = BlockBreakData.getData(player);
    ref = Math.max(ref, bbData.frequencyBuckets.lastAccess());
    ref = Math.max(ref, bbData.fastBreakfirstDamage);
    // TODO: More, less ...
    if (ref > now || ref < now - maxAge){
      return Long.MIN_VALUE;
View Full Code Here

TOP

Related Classes of fr.neatmonster.nocheatplus.checks.blockbreak.BlockBreakData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.