diff --git a/src/data/layers/factory.tsx b/src/data/layers/factory.tsx index 1f2ed5a..1e78b1c 100644 --- a/src/data/layers/factory.tsx +++ b/src/data/layers/factory.tsx @@ -559,7 +559,7 @@ const factory = createLayer(id, () => { (window as any).blocks = movingBlocks; globalBus.on("update", diff => { - if (!loaded) return; + if (!loaded || paused.value) return; const factoryTicks = Decimal.times(tickRate.value, diff).toNumber();