From 616cedd4bff0fcbcecf66e19e38fc26afe146407 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Thu, 5 Dec 2024 21:54:30 +0100 Subject: [PATCH] rebalance swamp homi, hopper enhancement and imperceptible builder aura amounts closes #378 --- .../naturesaura/blocks/tiles/BlockEntityHopperUpgrade.java | 2 +- .../naturesaura/blocks/tiles/BlockEntityMossGenerator.java | 2 +- .../de/ellpeck/naturesaura/blocks/tiles/BlockEntityPlacer.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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;