We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7568cbf commit 970d294Copy full SHA for 970d294
source/funkin/editors/charter/CharterSelection.hx
@@ -41,7 +41,7 @@ class CharterSelectionScreen extends EditorTreeMenuScreen {
41
42
for (d in s.difficulties) if (d != '') screen.add(makeChartOption(d, isVariant ? s.variant : null, s.name));
43
screen.add(new Separator());
44
- if (s.variants != null) for (v in s.variants) if (s.metas.get(v) != null) screen.add(makeVariationOption(s.metas.get(v)));
+ if (s.variants != null && s.metas != null) for (v in s.variants) if (s.metas.get(v) != null) screen.add(makeVariationOption(s.metas.get(v)));
45
46
#if sys
47
screen.insert(0, new NewOption(getID('newDifficulty'), getID('newDifficultyDesc'), () -> {
0 commit comments