Skip to content

Commit

Permalink
Minor inconvenience
Browse files Browse the repository at this point in the history
  • Loading branch information
Tecnio committed Mar 8, 2024
1 parent bbcff96 commit bae0b97
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.tecnio</groupId>
<artifactId>AntiHaxerman</artifactId>
<version>4.0</version>
<version>4.0.1</version>

<properties>
<maven.compiler.source>8</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
import me.tecnio.ahm.data.PlayerData;
import me.tecnio.ahm.data.tracker.Tracker;
import me.tecnio.ahm.exempt.ExemptType;
import me.tecnio.ahm.util.type.EvictingMap;

import java.util.HashMap;
import java.util.Map;

/**
* This is as basic as it gets this is just there to prevent any major bypass.
*/
public class GhostBlockTracker extends Tracker {

private final Map<BlockPosition, Long> blockMap = new HashMap<>();
private final Map<BlockPosition, Long> blockMap = new EvictingMap<>(10);
private double buffer;

public GhostBlockTracker(final PlayerData data) {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: AntiHaxerman
version: 4.0.0
version: 4.0.1
main: me.tecnio.ahm.AHMPlugin
authors: [Tecnio, Incognito, aSwitch]
description: An open-sourced anti-cheat solution.
Expand Down

0 comments on commit bae0b97

Please sign in to comment.