Skip to content

Commit a507596

Browse files
committed
woops needed to pick a synched value for that one
1 parent fc49207 commit a507596

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Nothing (I tend to only add finished Stuff to the Changelog).
1414
[CHANGED] The 3 Types of Golden Juices now make roughly ten times less Biomass than before, they now either produce 65x (64x plus base value), 9x (8x plus base value) or 2x (1x plus base value) the output of Juice based Biomass.
1515
[CHANGED] Can now rightclick a Tap or Nozzle with an Ender Garbage Bin or similar other Mod Voiding Items, to drain one attached Fluid Tank entirely.
1616
[CHANGED] Bedrock Drill can now accept the "Running Possible Detector" to check if there is 100L of Lubricant inside (and if the Structure is Okay).
17-
[CHANGED] Crucibles are now 1000 times harder to break when over 500 Kelvin unless empty.
17+
[CHANGED] Crucibles are now 1000 times harder to break when not empty.
1818
[ADDED] Steel Rope, which is just another type of Rope.
1919
[ADDED] Ultimet Boilers corresponding to the TaHFC Burning Boxes.
2020
[ADDED] Yellow and Brown Grass now indicate Lava, Gas and Oil Springs. Greener Grass indicates Water Springs.

src/main/java/gregtech/tileentity/multiblocks/MultiTileEntityCrucible.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ public void onWalkOver2(EntityLivingBase aEntity) {
708708
@Override public long getEnergySizeInputMax(TagData aEnergyType, byte aSide) {return Long.MAX_VALUE;}
709709
@Override public Collection<TagData> getEnergyTypes(byte aSide) {return ENERGYTYPES;}
710710

711-
@Override public float getBlockHardness() {return mContent.isEmpty() || mTemperature < Math.max(500, WD.envTemp(worldObj, xCoord, yCoord, zCoord)) ? super.getBlockHardness() : super.getBlockHardness() * 1000;}
711+
@Override public float getBlockHardness() {return mDisplayedHeight > 0 ? super.getBlockHardness() * 1000 : super.getBlockHardness();}
712712

713713
@Override public String getTileEntityName() {return "gt.multitileentity.multiblock.crucible";}
714714
}

src/main/java/gregtech/tileentity/tools/MultiTileEntitySmeltery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ public boolean checkObstruction(EntityPlayer aPlayer, byte aSide, float aHitX, f
697697
@Override public long getEnergySizeInputMax(TagData aEnergyType, byte aSide) {return Long.MAX_VALUE;}
698698
@Override public Collection<TagData> getEnergyTypes(byte aSide) {return ENERGYTYPES;}
699699

700-
@Override public float getBlockHardness() {return mContent.isEmpty() || mTemperature < Math.max(500, WD.envTemp(worldObj, xCoord, yCoord, zCoord)) ? super.getBlockHardness() : super.getBlockHardness() * 1000;}
700+
@Override public float getBlockHardness() {return mDisplayedHeight > 0 ? super.getBlockHardness() * 1000 : super.getBlockHardness();}
701701

702702
@Override public String getTileEntityName() {return "gt.multitileentity.smeltery";}
703703
}

0 commit comments

Comments
 (0)