Skip to content

Commit

Permalink
Fix incorrect function being called for get_currently_playing_music_t…
Browse files Browse the repository at this point in the history
…racks() (#27)
  • Loading branch information
dicemaster5 committed Apr 13, 2024
1 parent 1ca1403 commit 5e51ebe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion addons/sound_manager/sound_manager.gd
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ func get_currently_playing_music() -> Array:


func get_currently_playing_music_tracks() -> Array:
return music.get_current_tracks()
return music.get_currently_playing_tracks()


func pause_music(resource: AudioStream = null) -> void:
Expand Down

0 comments on commit 5e51ebe

Please sign in to comment.