mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-12-23 21:56:46 +00:00
HTML5 should build now
This commit is contained in:
parent
09b03efeea
commit
0d84559606
4
hmm.json
4
hmm.json
|
@ -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",
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue