File tree Expand file tree Collapse file tree
src/main/java/de/srendi/advancedperipherals/common/util/inventory Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ public class ChemicalFilter extends GenericFilter<ChemicalStack> {
2222
2323 private Holder <Chemical > chemical = MekanismAPI .EMPTY_CHEMICAL_HOLDER ;
2424 private TagKey <Chemical > tag = null ;
25- private long amount = 1000 ;
25+ private long amount = Long . MAX_VALUE ;
2626 private String fingerprint = "" ;
2727 public int fromSlot = -1 ;
2828 public int toSlot = -1 ;
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ public class FluidFilter extends GenericFilter<FluidStack> {
3333 private Fluid fluid = Fluids .EMPTY ;
3434 private TagKey <Fluid > tag = null ;
3535 private DataComponentPatch components = null ;
36- private int amount = 1000 ;
36+ private int amount = Integer . MAX_VALUE ;
3737 private String fingerprint = "" ;
3838
3939 private FluidFilter () {
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ public class ItemFilter extends GenericFilter<ItemStack> {
3232 private Item item = Items .AIR ;
3333 private TagKey <Item > tag = null ;
3434 private DataComponentPatch components = null ;
35- private int count = 64 ;
35+ private int count = Integer . MAX_VALUE ;
3636 private String fingerprint = "" ;
3737 public int fromSlot = -1 ;
3838 public int toSlot = -1 ;
You can’t perform that action at this time.
0 commit comments