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:
parent
aff169b0b2
commit
a3a728e307
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
if (reactors >= 3)
|
||||
// Only two reactor cells are required to begin the uranium breeding process.
|
||||
if (reactors >= 2)
|
||||
{
|
||||
// Begin the process of re-enriching the uranium rod but not consistently.
|
||||
if (worldObj.rand.nextInt(1000) <= 100 && reactor.getTemperature() > BREEDING_TEMP)
|
||||
|
|
Loading…
Add table
Reference in a new issue