diff --git a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityHopperUpgrade.java b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityHopperUpgrade.java index b13f29ec..3da06f48 100644 --- a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityHopperUpgrade.java +++ b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityHopperUpgrade.java @@ -44,7 +44,7 @@ public class BlockEntityHopperUpgrade extends BlockEntityImpl implements ITickab if (items.isEmpty()) return; - var drainPerItem = 500; + var drainPerItem = 100; if (!this.canUseRightNow(drainPerItem * items.size())) return; diff --git a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityMossGenerator.java b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityMossGenerator.java index f4f5819f..0e7e0278 100644 --- a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityMossGenerator.java +++ b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityMossGenerator.java @@ -48,7 +48,7 @@ public class BlockEntityMossGenerator extends BlockEntityImpl implements ITickab var state = this.level.getBlockState(offset); var result = NaturesAuraAPI.BOTANIST_PICKAXE_CONVERSIONS.inverse().get(state); - var toAdd = 4000; + var toAdd = 5000; if (this.canGenerateRightNow(toAdd)) { this.generateAura(toAdd); PacketHandler.sendToAllAround(this.level, this.worldPosition, 32, diff --git a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityPlacer.java b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityPlacer.java index 3e7005b4..1d942864 100644 --- a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityPlacer.java +++ b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityPlacer.java @@ -44,7 +44,7 @@ public class BlockEntityPlacer extends BlockEntityImpl implements ITickableBlock if (frames.isEmpty()) return; - var toDrain = 1000; + var toDrain = 200; if (!this.canUseRightNow(toDrain)) return;