mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-12-22 06:59:22 +01:00
rebalance swamp homi, hopper enhancement and imperceptible builder aura amounts
closes #378
This commit is contained in:
parent
b634c16c01
commit
616cedd4bf
3 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue