Skip to content

Commit

Permalink
Restrict bulk/radioactive cell config inventory size to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed Oct 10, 2022
1 parent cbfd452 commit 0e2c036
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

public interface IRadioactiveCellItem extends ICellWorkbenchItem {
default ConfigInventory getConfigInventory(ItemStack is) {
return CellConfig.create(MekanismKeyType.TYPE.filter(), is);
return CellConfig.create(MekanismKeyType.TYPE.filter(), is, 1);
}

default void addCellInformationToTooltip(ItemStack is, List<Component> lines) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

public interface IBulkCellItem extends ICellWorkbenchItem {
default ConfigInventory getConfigInventory(ItemStack is) {
return CellConfig.create(AEItemKey.filter(), is);
return CellConfig.create(AEItemKey.filter(), is, 1);
}

default void addCellInformationToTooltip(ItemStack is, List<Component> lines) {
Expand Down

0 comments on commit 0e2c036

Please sign in to comment.