Skip to content

Commit

Permalink
Set sounds.enable_biome_sounds to false by default
Browse files Browse the repository at this point in the history
  • Loading branch information
AntumDeluge committed Sep 13, 2021
1 parent c38ca21 commit ec4e3f8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ sounds.enable_tests
sounds.enable_biome_sounds
- Enables/Disables ambiance sounds for biomes.
- type: bool
- default: true
- default: false
sounds.biome_interval
- Interval between playing biome sounds.
Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

next
----
- sounds.enable_biome_sounds set to false by default


v1.11
-----
- added setting to enable/disable built-in sound groups
Expand Down
4 changes: 2 additions & 2 deletions settings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ end
--
-- @setting sounds.enable_biome_sounds
-- @settype bool
-- @default true
sounds.enable_biome_sounds = core.settings:get_bool("sounds.enable_biome_sounds", true)
-- @default false
sounds.enable_biome_sounds = core.settings:get_bool("sounds.enable_biome_sounds", false)

--- Interval between playing biome sounds.
--
Expand Down
2 changes: 1 addition & 1 deletion settingtypes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
sounds.disabled_groups (Disabled sound groups) string

# Enables/Disables ambiance sounds for biomes.
sounds.enable_biome_sounds (Enable biome sounds) bool true
sounds.enable_biome_sounds (Enable biome sounds) bool false

# Interval between playing biome sounds.
sounds.biome_interval (Biome sound interval) int 30 5
Expand Down

0 comments on commit ec4e3f8

Please sign in to comment.