This commit is contained in:
Boblet 2025-01-08 16:47:43 +01:00
parent 5746a90cb7
commit d4c0cb017a
4 changed files with 5 additions and 3 deletions

View File

@ -7,4 +7,5 @@
## Fixed
* Fixed raw bedrock ore tooltip not showing the density's color correctly
* Fixed T45 helmet not protecting against carbon monoxide
* Fixed T45 helmet not protecting against carbon monoxide
* Fixed general issues regarding the rotary furnace

View File

@ -93,7 +93,8 @@ public class TileEntityMachineRotaryFurnace extends TileEntityMachinePolluting i
int prev = this.output.amount;
Vec3 impact = Vec3.createVectorHelper(0, 0, 0);
MaterialStack leftover = CrucibleUtil.pourSingleStack(worldObj, xCoord + 0.5D + rot.offsetX * 2.875D, yCoord + 1.25D, zCoord + 0.5D + rot.offsetZ * 2.875D, 6, true, this.output, MaterialShapes.INGOT.q(1), impact);
this.output = leftover;
if(prev != this.output.amount) {
this.output = leftover;
NBTTagCompound data = new NBTTagCompound();

View File

@ -14,7 +14,7 @@ public class CrashHelper {
@Override
public String getLabel() {
return "NTM Modified recipes:";
return "NTM Modified recipes";
}
@Override

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB