Skip to content

Commit

Permalink
disable FE in ingredient buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
GlodBlock committed Jan 30, 2025
1 parent 2494669 commit d372f6c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ public TileIngredientBuffer(BlockPos pos, BlockState blockState) {
if (ExternalTypes.MANA != null) {
this.buffer.setCapacity(ExternalTypes.MANA, 1000);
}
// Disable FE
if (ExternalTypes.FLUX != null) {
this.buffer.setCapacity(ExternalTypes.FLUX, 10000);
this.buffer.setCapacity(ExternalTypes.FLUX, 0);
}
if (ExternalTypes.SOURCE != null) {
this.buffer.setCapacity(ExternalTypes.SOURCE, 1000);
Expand Down

0 comments on commit d372f6c

Please sign in to comment.