Skip to content

Commit

Permalink
Fix missing argument on is_music_playing_resource.
Browse files Browse the repository at this point in the history
  • Loading branch information
CakeVR committed Jan 14, 2024
1 parent 5882817 commit 482ee71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/dialogic/Modules/Audio/event_music.gd
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var loop: bool = true
################################################################################

func _execute() -> void:
if not dialogic.Audio.is_music_playing_resource():
if not dialogic.Audio.is_music_playing_resource(file_path):
dialogic.Audio.update_music(file_path, volume, audio_bus, fade_length, loop)

finish()
Expand Down

0 comments on commit 482ee71

Please sign in to comment.