Finite Water

Dale

New Member
Jul 29, 2019
19
0
0
Okay what i want seems simple but i cant figure out how to do it... i just want water to not make new source blocks? please HALP! i know there is an old unsupported mod that did this but it seems so simple is there a config i can edit or something? I am trying to do this to mine craft 1.7.10 mod pack.
 

EchoingZen

New Member
Jul 29, 2019
351
0
0
You are looking for CodeChickenCore.

"#If set to true two adjacent water source blocks will not generate a third.
finiteWater=false"

Just change it to true. :)
 

Dale

New Member
Jul 29, 2019
19
0
0
i dont see anything about water in the code chicken core config? the pack im trying to change is FTB Infinity
 

SkeletonPunk

New Member
Jul 29, 2019
2,063
-3
1
i dont see anything about water in the code chicken core config? the pack im trying to change is FTB Infinity
Its there
FTBInfinity\minecraft\config\CodeChickenCore
in that should be this
Code:
#CodeChickenCore configuration file.

checkUpdates=false

#set to true to completely deobfuscate mcp names
dev.deobfuscate=false

#Various tweaks that can be applied to game mechanics.
tweaks
{
    #If set to true and doFireTick is disabled in the game rules, fire will still dissipate if it's not over a fire source
    doFireTickOut=true
    #If set to true, creepers will not destroy landscape. (A version of mobGriefing setting just for creepers)
    environmentallyFriendlyCreepers=false
    #If set to true two adjacent water source blocks will not generate a third.
    finiteWater=false
    #Set this to true to use the pre1.5 lava textures
    replaceLavaFX=false
    #Set this to true to use the pre1.5 water textures
    replaceWaterFX=false
    #If set to false, leaves will only replace air when growing
    softLeafReplace=false
}