Skip to content

Commit

Permalink
allow infernal blast furnace to drain essentia via mirrors
Browse files Browse the repository at this point in the history
  • Loading branch information
Glease committed May 22, 2024
1 parent 5354722 commit 00f8f19
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ void storeFuel() {
for (int y = this.yCoord - 5; y < this.yCoord + 5; y++) {
for (int z = this.zCoord - 5; z < this.zCoord + 5; z++) {
TileEntity tile = this.worldObj.getTileEntity(x, y, z);
if ((tile != null) && ((tile instanceof IAspectSource))) {
if (tile instanceof IAspectSource) {
IAspectSource as = (IAspectSource) tile;
if ((as.doesContainerContainAmount(Aspect.FIRE, 1)) && (as.takeFromContainer(Aspect.FIRE, 1))) {
if (as.takeFromContainer(Aspect.FIRE, 1)) {
PacketHandler.INSTANCE.sendToAllAround(
new PacketFXEssentiaSource(
this.xCoord,
Expand Down

0 comments on commit 00f8f19

Please sign in to comment.