Skip to content

Commit

Permalink
Revert "fix ME Conduits onChunkUnload (#107)" (#109)
Browse files Browse the repository at this point in the history
This reverts commit 73cb43a.
  • Loading branch information
Pilzinsel64 authored Mar 5, 2023
1 parent 35e6667 commit 0bf8d3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/crazypants/enderio/conduit/me/MEConduit.java
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,9 @@ public void onRemovedFromBundle() {
@Method(modid = "appliedenergistics2")
public void onChunkUnload(World worldObj) {
super.onChunkUnload(worldObj);
IConduitBundle bundle = getBundle();
if (bundle != null) {
bundle.setGridNode(null);
if (getNode() != null) {
getNode().destroy();
getBundle().setGridNode(null);
}
}

Expand Down

0 comments on commit 0bf8d3f

Please sign in to comment.