Examples of InventoryData


Examples of fr.neatmonster.nocheatplus.checks.inventory.InventoryData

    // Health regain (not unimportant).
    ref = Math.max(ref, fData.regainHealthTime);
    // Move time.
    ref = Math.max(ref, CombinedData.getData(player).lastMoveTime);
    // 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());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.