diff options
author | Martin Robertz <dream-master@gmx.net> | 2021-11-27 12:06:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-27 12:06:45 +0100 |
commit | 781215081b498f633dfb11c4be31c4702efd44cb (patch) | |
tree | 8477dec5718bb05f7066c4a58598e92855bbc28f /src/main/java/gregtech/api/interfaces/tileentity/IEnergyConnected.java | |
parent | 8c92125c71dd3035b199ba3add57b83144aaa766 (diff) | |
parent | 00b682a49b7f60986630710dff410ece5eeb1a81 (diff) | |
download | GT5-Unofficial-781215081b498f633dfb11c4be31c4702efd44cb.tar.gz GT5-Unofficial-781215081b498f633dfb11c4be31c4702efd44cb.tar.bz2 GT5-Unofficial-781215081b498f633dfb11c4be31c4702efd44cb.zip |
Merge pull request #752 from boubou19/pollution
Make the GT pollution values tweakable through config.
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity/IEnergyConnected.java')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/tileentity/IEnergyConnected.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/IEnergyConnected.java b/src/main/java/gregtech/api/interfaces/tileentity/IEnergyConnected.java index 24d0576864..30a5230168 100644 --- a/src/main/java/gregtech/api/interfaces/tileentity/IEnergyConnected.java +++ b/src/main/java/gregtech/api/interfaces/tileentity/IEnergyConnected.java @@ -113,7 +113,7 @@ public interface IEnergyConnected extends IColoredTileEntity, IHasWorldObjectAnd tWorld.setBlock(tX, tY, tZ, Blocks.air); if (GregTech_API.sMachineExplosions) if (GT_Mod.gregtechproxy.mPollution) - GT_Pollution.addPollution(tWorld.getChunkFromBlockCoords(tX, tZ), 100000); + GT_Pollution.addPollution(tWorld.getChunkFromBlockCoords(tX, tZ), GT_Mod.gregtechproxy.mPollutionOnExplosion); new WorldSpawnedEventBuilder.ExplosionEffectEventBuilder() .setStrength(tStrength) |