Skip to content

Commit fe650d6

Browse files
committed
...
1 parent d1fb3fa commit fe650d6

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

src/main/java/aekeylegacy/api/stacks/KeyCounter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ public Collection<Object2LongMap.Entry<AEKey>> findFuzzy(AEKey key, FuzzyMode fu
5151
Objects.requireNonNull(key, "key");
5252
var subIndex = getSubIndexOrNull(key);
5353
return subIndex == null ? Collections.emptyList() : subIndex.findFuzzy(key, fuzzy);
54+
//return subIndex == null ? List.of() : subIndex.findFuzzy(key, fuzzy);
5455
}
5556

5657
public void removeZeros() {

src/main/java/aekeylegacy/api/stacks/VariantCounter.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ public void setDropZeros(boolean dropZeros) {
2828

2929
public long get(AEKey key) {
3030
return this.getRecords().getOrDefault(key, 0L);
31+
//return this.getRecords().getOrDefault(key, 0);
3132
}
3233

3334
public void add(AEKey key, long amount) {

0 commit comments

Comments
 (0)