HTML5 should build now

This commit is contained in:
EliteMasterEric 2023-09-18 17:19:31 -04:00
parent 09b03efeea
commit 0d84559606
2 changed files with 4 additions and 3 deletions

View File

@ -49,8 +49,8 @@
"name": "haxeui-core",
"type": "git",
"dir": null,
"ref": "f5daafe93bdfa957538f199294a54e0476c805b7",
"url": "https://github.com/haxeui/haxeui-core/"
"ref": "e92d5cfac847943fac84696b103670d55c2c774f",
"url": "https://github.com/haxeui/haxeui-core"
},
{
"name": "haxeui-flixel",

View File

@ -631,7 +631,8 @@ class ChartEditorDialogHandler
for (charKey in state.currentSongMetadata.playData.playableChars.keys())
{
var charData:SongPlayableChar = state.currentSongMetadata.playData.playableChars.get(charKey);
var charData:Null<SongPlayableChar> = state.currentSongMetadata.playData.playableChars.get(charKey);
if (charData == null) continue;
charIdsForVocals.push(charKey);
if (charData.opponent != null) charIdsForVocals.push(charData.opponent);
}