Skip to content

Commit

Permalink
Increased max stack size of addons to 16 closes #1117
Browse files Browse the repository at this point in the history
  • Loading branch information
Buuz135 committed Jun 10, 2021
1 parent 0e2051e commit 70e15c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class EfficiencyAddonItem extends IFCustomItem {
private int tier;

public EfficiencyAddonItem(int tier, ItemGroup group) {
super("efficiency_addon_" + tier, group, new Properties().maxStackSize(1));
super("efficiency_addon_" + tier, group, new Properties().maxStackSize(16));
this.tier = tier;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class RangeAddonItem extends IFCustomItem {
private int tier;

public RangeAddonItem(int tier, ItemGroup group) {
super("range_addon" + tier, group, new Properties().maxStackSize(1));
super("range_addon" + tier, group, new Properties().maxStackSize(16));
this.tier = tier;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class SpeedAddonItem extends IFCustomItem {
private int tier;

public SpeedAddonItem(int tier, ItemGroup group) {
super("speed_addon_" + tier, group, new Properties().maxStackSize(1));
super("speed_addon_" + tier, group, new Properties().maxStackSize(16));
this.tier = tier;
}

Expand Down

0 comments on commit 70e15c4

Please sign in to comment.