Update BlockUpdateHandler.java

This commit is contained in:
Dawson
2022-09-07 15:12:13 -04:00
parent 4c7f26b43e
commit 451084a75c
@@ -21,7 +21,7 @@ import java.util.*;
@RequiredArgsConstructor
public class BlockUpdateHandler {
private final Map<IntVector, Deque<Material>> blockInformation = new Hashtable<>(100, 0.1f);
private final Map<IntVector, Deque<Material>> blockInformation = new HashMap<>();
private final APlayer player;