Skip to content

Commit b7e31a1

Browse files
authored
Fix #974: Quantum armor items stack beyond 1 (#975)
1 parent 5d9c1b6 commit b7e31a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/aztech/modern_industrialization/items/armor/QuantumArmorItem.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class QuantumArmorItem extends ArmorItem {
4242
public static final List<QuantumArmorItem> ITEMS = new ArrayList<>();
4343

4444
public QuantumArmorItem(ArmorItem.Type type, Properties settings) {
45-
super(MIArmorMaterials.QUANTUM, type, settings);
45+
super(MIArmorMaterials.QUANTUM, type, settings.stacksTo(1));
4646
ITEMS.add(this);
4747
}
4848

0 commit comments

Comments
 (0)