From da8b600f3129d37c2cf870c38f29ec5f03d46e00 Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Thu, 4 Mar 2021 22:24:40 -0500 Subject: [PATCH] Fix extractors not extracting --- .../shadowfacts/phycon/block/extractor/ExtractorBlockEntity.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/kotlin/net/shadowfacts/phycon/block/extractor/ExtractorBlockEntity.kt b/src/main/kotlin/net/shadowfacts/phycon/block/extractor/ExtractorBlockEntity.kt index 8a52813..d471a3c 100644 --- a/src/main/kotlin/net/shadowfacts/phycon/block/extractor/ExtractorBlockEntity.kt +++ b/src/main/kotlin/net/shadowfacts/phycon/block/extractor/ExtractorBlockEntity.kt @@ -14,6 +14,7 @@ import net.shadowfacts.phycon.init.PhyBlockEntities import net.shadowfacts.phycon.block.DeviceBlockEntity import net.shadowfacts.phycon.component.ActivationController import net.shadowfacts.phycon.component.NetworkStackDispatcher +import net.shadowfacts.phycon.component.finishTimedOutPendingInsertions import net.shadowfacts.phycon.component.handleItemStack import net.shadowfacts.phycon.packet.CapacityPacket import net.shadowfacts.phycon.packet.ItemStackPacket @@ -84,6 +85,8 @@ class ExtractorBlockEntity: DeviceBlockEntity(PhyBlockEntities.EXTRACTOR), if (!world!!.isClient) { controller.tick() + + finishTimedOutPendingInsertions() } }