Fix word ambient -> ambient

This commit is contained in:
VAILLANT Jeremy
2021-05-23 21:33:44 +02:00
parent 8ec7569982
commit 1ab1210881
4 changed files with 22 additions and 22 deletions
+5 -5
View File
@@ -8,7 +8,7 @@ onready var last_btn = null
func _ready():
_display_hud_menu()
_play_ambiant_sound()
_play_ambient_sound()
func _display_hud_menu():
var counter = 0
@@ -46,7 +46,7 @@ func _create_button_info(scene, counter, label_id):
last_btn = btn
func _play_ambiant_sound():
if Global.get_setting_ambiant_sound():
$AmbiantSound.play()
$AmbiantSound.stream_paused = false
func _play_ambient_sound():
if Global.get_setting_ambient_sound():
$AmbientSound.play()
$AmbientSound.stream_paused = false