Merge pull request #61 from DigitalJokerMan/change-default-stacking-rule

Changed DEFAULT_STACKING_RULE's maxSize from 127 to 64
This commit is contained in:
TheMode 2020-10-25 22:21:26 +01:00 committed by GitHub
commit 6a6e359529
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ import java.util.*;
*/
public class ItemStack implements DataContainer {
private static final StackingRule DEFAULT_STACKING_RULE = new VanillaStackingRule(127);
private static final StackingRule DEFAULT_STACKING_RULE = new VanillaStackingRule(64);
private Material material;