Skip to content

Commit

Permalink
Assorted fission fixes (#2536)
Browse files Browse the repository at this point in the history
  • Loading branch information
loxoDev authored Jul 10, 2024
1 parent 7786b20 commit 8ad1990
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ public static void register() {
.build();

Corium = new Material.Builder(1560, gregtechId("corium"))
.liquid(new FluidBuilder().temperature(2500).block().density(8.0D))
.liquid(new FluidBuilder().temperature(2500).block().density(8.0D).viscosity(10000))
.color(0x7A6B50)
.flags(NO_UNIFICATION, STICKY, GLOWING)
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,11 @@ public int findHeight(boolean top) {
return i - 1;
}

@Override
public boolean allowsExtendedFacing() {
return false;
}

@Override
public void updateFormedValid() {
// Take in coolant, take in fuel, update reactor, output steam
Expand Down Expand Up @@ -806,7 +811,6 @@ private void lockAndPrepareReactor() {
int radius = this.diameter / 2; // This is the floor of the radius, the actual radius is 0.5 blocks
// larger
BlockPos reactorOrigin = this.getPos().offset(this.frontFacing.getOpposite(), radius);
radius--;
boolean foundFuel = false;
for (int i = -radius; i <= radius; i++) {
for (int j = -radius; j <= radius; j++) {
Expand Down

0 comments on commit 8ad1990

Please sign in to comment.