Misc cleanup

This commit is contained in:
Anuken
2020-11-26 12:53:19 -05:00
parent 465219540c
commit 3fe4ae38b6
10 changed files with 43 additions and 33 deletions

View File

@@ -98,11 +98,11 @@ public class TechTree implements ContentList{
node(platedConduit, () -> {
});
});
node(rotaryPump, () -> {
node(thermalPump, () -> {
node(rotaryPump, () -> {
node(thermalPump, () -> {
});
});
});
});

View File

@@ -53,10 +53,11 @@ public class Weathers implements ContentList{
baseSpeed = 5.4f;
attrs.set(Attribute.light, -0.1f);
attrs.set(Attribute.water, -0.1f);
opacityMultiplier = 0.5f;
opacityMultiplier = 0.4f;
force = 0.1f;
sound = Sounds.wind;
soundVol = 0.3f;
soundVol = 0.8f;
duration = 7f * Time.toMinutes;
}};
sporestorm = new ParticleWeather("sporestorm"){{
@@ -77,7 +78,8 @@ public class Weathers implements ContentList{
opacityMultiplier = 0.75f;
force = 0.1f;
sound = Sounds.wind;
soundVol = 0.3f;
soundVol = 0.7f;
duration = 7f * Time.toMinutes;
}};
fog = new ParticleWeather("fog"){{