From 9a518c256d037a81cb2db5906ed0f26bf5b338ff Mon Sep 17 00:00:00 2001 From: riconuts Date: Fri, 21 Feb 2025 00:21:57 -0300 Subject: [PATCH] Update Song.hx --- source/funkin/data/Song.hx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/source/funkin/data/Song.hx b/source/funkin/data/Song.hx index 183b6d8c..b1a2ce02 100644 --- a/source/funkin/data/Song.hx +++ b/source/funkin/data/Song.hx @@ -128,13 +128,7 @@ class Song } public function play(?chartName:String = ''){ - if (charts.contains(chartName)) { - Song.playSong(this, chartName); - return true; - } - - trace('$this: Attempt to play null chart: ' + chartName); - return false; + Song.playSong(this, chartName); } public function toString()