Skip to content

Commit 9668583

Browse files
Merge pull request #116 from MarbleGateKeeper/patch-1
Fix a Ponder issue.
2 parents 2be8efa + 376792f commit 9668583

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/main/java/com/rae/creatingspace/content/ponders/CSPonderPlugin.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
import com.simibubi.create.content.kinetics.crank.ValveHandleBlock;
77
import com.simibubi.create.content.logistics.packagePort.postbox.PostboxBlock;
88
import com.simibubi.create.content.logistics.tableCloth.TableClothBlock;
9-
import com.simibubi.create.foundation.ponder.PonderWorldBlockEntityFix;
109
import com.simibubi.create.infrastructure.ponder.AllCreatePonderTags;
1110
import net.createmod.ponder.api.level.PonderLevel;
1211
import net.createmod.ponder.api.registration.*;
@@ -44,15 +43,10 @@ public void registerSharedText(SharedTextRegistrationHelper helper) {
4443
helper.registerSharedText("storage_on_contraption", "Inventories attached to the Contraption will pick up their drops automatically");
4544
}
4645

47-
@Override
48-
public void onPonderLevelRestore(PonderLevel ponderLevel) {
49-
PonderWorldBlockEntityFix.fixControllerBlockEntities(ponderLevel);
50-
}
51-
5246
@Override
5347
public void indexExclusions(IndexExclusionHelper helper) {
5448
helper.excludeBlockVariants(ValveHandleBlock.class, AllBlocks.COPPER_VALVE_HANDLE.get());
5549
helper.excludeBlockVariants(PostboxBlock.class, AllBlocks.PACKAGE_POSTBOXES.get(DyeColor.WHITE).get());
5650
helper.excludeBlockVariants(TableClothBlock.class, AllBlocks.TABLE_CLOTHS.get(DyeColor.WHITE).get());
5751
}
58-
}
52+
}

0 commit comments

Comments
 (0)