diff --git a/src/main/java/ru/dbotthepony/mc/otm/item/ItemMatterCapacitor.java b/src/main/java/ru/dbotthepony/mc/otm/item/ItemMatterCapacitor.java index 696b4499c..21ddf45b7 100644 --- a/src/main/java/ru/dbotthepony/mc/otm/item/ItemMatterCapacitor.java +++ b/src/main/java/ru/dbotthepony/mc/otm/item/ItemMatterCapacitor.java @@ -175,13 +175,13 @@ public class ItemMatterCapacitor extends Item { private final boolean is_creative; public ItemMatterCapacitor(BigDecimal storage) { - super(new Properties().stacksTo(64).tab(CreativeModeTab.TAB_MISC)); + super(new Properties().stacksTo(1).tab(CreativeModeTab.TAB_MISC)); is_creative = false; this.storage = storage; } public ItemMatterCapacitor() { - super(new Properties().stacksTo(64).tab(CreativeModeTab.TAB_MISC)); + super(new Properties().stacksTo(1).tab(CreativeModeTab.TAB_MISC).rarity(Rarity.EPIC)); is_creative = true; storage = MatteryCapability.LONG_MAX_VALUE; }