From 75845ed3b5f5fe27f7a01890d45f2c70dec6463e Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 17 Oct 2020 02:12:41 +0200 Subject: [PATCH] rebalanced the aura field creator slightly --- src/main/java/de/ellpeck/naturesaura/ModConfig.java | 2 +- .../naturesaura/blocks/tiles/TileEntityFieldCreator.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/de/ellpeck/naturesaura/ModConfig.java b/src/main/java/de/ellpeck/naturesaura/ModConfig.java index 5749171b..d8eee516 100644 --- a/src/main/java/de/ellpeck/naturesaura/ModConfig.java +++ b/src/main/java/de/ellpeck/naturesaura/ModConfig.java @@ -74,7 +74,7 @@ public final class ModConfig { this.fieldCreatorRange = builder .comment("The amount of blocks that can be between two Aura Field Creators for them to be connectable and work together") .translation("config." + NaturesAura.MOD_ID + ".fieldCreatorRange") - .define("fieldCreatorRange", 10); + .define("fieldCreatorRange", 24); this.auraToRFRatio = builder .comment("The Aura to RF ratio used by the RF converter, read as aura*ratio = rf") .translation("config." + NaturesAura.MOD_ID + ".auraToRFRatio") diff --git a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityFieldCreator.java b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityFieldCreator.java index 2ef169e4..9a27cd90 100644 --- a/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityFieldCreator.java +++ b/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityFieldCreator.java @@ -92,7 +92,7 @@ public class TileEntityFieldCreator extends TileEntityImpl implements ITickableT this.sendParticles(); } else { if (this.world.getGameTime() % 40 == 0) - chunk.drainAura(spot, 100); + chunk.drainAura(spot, 20); ItemStack tool = this.getToolUsed(creator); Vector3d dist = new Vector3d( @@ -125,7 +125,7 @@ public class TileEntityFieldCreator extends TileEntityImpl implements ITickableT this.world.destroyBlock(pos, false); for (ItemStack stack : drops) Block.spawnAsEntity(this.world, pos, stack); - chunk.drainAura(spot, tool != null ? 1000 : 300); + chunk.drainAura(spot, tool != null ? 300 : 100); this.sendParticles(); } }