Fix stackability of matter capacitor
This commit is contained in:
parent
beca7b88c2
commit
1534eae1ab
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user