Skip to content

Commit 8870539

Browse files
committed
make FluidFilter's default count to Integer.MAX_VALUE
1 parent d41c230 commit 8870539

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/main/java/de/srendi/advancedperipherals/common/util/inventory

src/main/java/de/srendi/advancedperipherals/common/util/inventory/FluidFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class FluidFilter extends GenericFilter<FluidStack> {
2727
private TagKey<Fluid> tag = null;
2828
private CompoundTag nbt = null;
2929
private String nbtHash = null;
30-
private int count = 1000;
30+
private int count = Integer.MAX_VALUE;
3131
private String fingerprint = "";
3232

3333
private FluidFilter() {

0 commit comments

Comments
 (0)