Lowered the amount of reactor cells needed around another reactor cell to re-encrich fissle fuel rods to two. This allows for full automation and inserting/extracting rods from center reactor cell.

This commit is contained in:
Maxwolf Goodliffe 2014-05-23 03:59:18 -07:00
parent aff169b0b2
commit a3a728e307

View file

@ -57,8 +57,8 @@ public class ItemFissileFuel extends ItemRadioactive implements IReactorComponen
} }
} }
// Only three reactor cells are required to begin the uranium breeding process instead of four. // Only two reactor cells are required to begin the uranium breeding process.
if (reactors >= 3) if (reactors >= 2)
{ {
// Begin the process of re-enriching the uranium rod but not consistently. // Begin the process of re-enriching the uranium rod but not consistently.
if (worldObj.rand.nextInt(1000) <= 100 && reactor.getTemperature() > BREEDING_TEMP) if (worldObj.rand.nextInt(1000) <= 100 && reactor.getTemperature() > BREEDING_TEMP)