Skip to content

Commit 616cedd

Browse files
committed
rebalance swamp homi, hopper enhancement and imperceptible builder aura amounts
closes #378
1 parent b634c16 commit 616cedd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityHopperUpgrade.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public void tick() {
4444
if (items.isEmpty())
4545
return;
4646

47-
var drainPerItem = 500;
47+
var drainPerItem = 100;
4848
if (!this.canUseRightNow(drainPerItem * items.size()))
4949
return;
5050

Diff for: src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityMossGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public void tick() {
4848
var state = this.level.getBlockState(offset);
4949
var result = NaturesAuraAPI.BOTANIST_PICKAXE_CONVERSIONS.inverse().get(state);
5050

51-
var toAdd = 4000;
51+
var toAdd = 5000;
5252
if (this.canGenerateRightNow(toAdd)) {
5353
this.generateAura(toAdd);
5454
PacketHandler.sendToAllAround(this.level, this.worldPosition, 32,

Diff for: src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntityPlacer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public void tick() {
4444
if (frames.isEmpty())
4545
return;
4646

47-
var toDrain = 1000;
47+
var toDrain = 200;
4848
if (!this.canUseRightNow(toDrain))
4949
return;
5050

0 commit comments

Comments
 (0)