Reverted building explosion nerf completely
This commit is contained in:
@@ -94,7 +94,7 @@ public class Damage{
|
||||
}
|
||||
|
||||
int waves = explosiveness <= 2 ? 0 : Mathf.clamp((int)(explosiveness / 11), 1, 25);
|
||||
float damagePerWave = Mathf.pow(explosiveness / 2f, 0.8f);
|
||||
float damagePerWave = explosiveness / 2f;
|
||||
|
||||
for(int i = 0; i < waves; i++){
|
||||
int f = i;
|
||||
|
||||
@@ -24,7 +24,7 @@ public class LiquidSource extends Block{
|
||||
update = true;
|
||||
solid = true;
|
||||
hasLiquids = true;
|
||||
liquidCapacity = 100f;
|
||||
liquidCapacity = 10000f;
|
||||
configurable = true;
|
||||
outputsLiquid = true;
|
||||
saveConfig = true;
|
||||
@@ -63,7 +63,7 @@ public class LiquidSource extends Block{
|
||||
if(source == null){
|
||||
liquids.clear();
|
||||
}else{
|
||||
liquids.add(source, liquidCapacity);
|
||||
liquids.set(source, liquidCapacity);
|
||||
dumpLiquid(source);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user