Skip to content

Commit

Permalink
Tank should probably be a multiple of 2, derp.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nirek-K committed Feb 18, 2016
1 parent 194c0a0 commit 9c40b03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/forestry/factory/tiles/TileFabricator.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public TileFabricator() {
setEnergyPerWorkCycle(200);
craftingInventory = new InventoryGhostCrafting<>(this, InventoryGhostCrafting.SLOT_CRAFTING_COUNT);
setInternalInventory(new InventoryFabricator(this));
moltenTank = new FilteredTank(5 * Constants.BUCKET_VOLUME, Fluids.GLASS.getFluid());
moltenTank = new FilteredTank(4 * Constants.BUCKET_VOLUME, Fluids.GLASS.getFluid());
moltenTank.tankMode = StandardTank.TankMode.INTERNAL;
tankManager = new TankManager(this, moltenTank);
}
Expand Down

0 comments on commit 9c40b03

Please sign in to comment.