diff --git a/core/assets/sounds/fire.ogg b/core/assets/sounds/fire.ogg index 0201ee8ea4..eb5ea8a770 100644 Binary files a/core/assets/sounds/fire.ogg and b/core/assets/sounds/fire.ogg differ diff --git a/core/src/mindustry/entities/comp/FireComp.java b/core/src/mindustry/entities/comp/FireComp.java index 84fcb6b3b5..ea26090b11 100644 --- a/core/src/mindustry/entities/comp/FireComp.java +++ b/core/src/mindustry/entities/comp/FireComp.java @@ -34,9 +34,7 @@ abstract class FireComp implements Timedc, Posc, Firec, Syncc{ Fx.fireSmoke.at(x + Mathf.range(4f), y + Mathf.range(4f)); } - if(Mathf.chance(0.001 * Time.delta)){ - Sounds.fire.at(this); - } + loops.play(Sounds.fire, this, 0.07f); time = Mathf.clamp(time + Time.delta, 0, lifetime()); diff --git a/fastlane/metadata/android/en-US/changelogs/29691.txt b/fastlane/metadata/android/en-US/changelogs/29691.txt new file mode 100644 index 0000000000..181d3edb28 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/29691.txt @@ -0,0 +1,9 @@ +- Improved icons +- Improved unit rotation visuals when moving and building/mining +- Decreased command limit of early game flying units to reduce PvP rushing +- Made core units unlock on spawn +- Switched to a new, unified audio framework for all platforms +- Added new sound effects and loops +- Added new music +- Added community server groups with optional titles and a hide button +- Added editor search bar (Contributed by @summetdev)