diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/block/entity/MatteryWorkerBlockEntity.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/block/entity/MatteryWorkerBlockEntity.kt index aacaa4206..2eddb08dc 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/block/entity/MatteryWorkerBlockEntity.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/block/entity/MatteryWorkerBlockEntity.kt @@ -245,7 +245,7 @@ abstract class MatteryWorkerBlockEntity( var availableTicks = 1.0 - while (!isIdling && weakGreaterThan(availableTicks, 0.0)) { + while (!isIdling && weakGreaterThan(availableTicks, 0.0) && throttleTicks <= 0) { if (isBlockedByRedstone) { isIdling = true break @@ -346,6 +346,7 @@ abstract class MatteryWorkerBlockEntity( } errorTicksAnim++ + break } }