Skip to content

Commit

Permalink
barebones crash fix
Browse files Browse the repository at this point in the history
closes #794
  • Loading branch information
JordanSantiagoYT committed Dec 14, 2024
1 parent 5a9488e commit b2c8177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/editors/CharacterEditorState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1253,7 +1253,7 @@ class CharacterEditorState extends MusicBeatState
function reloadCharacterOptions() {
if(UI_characterbox != null) {
imageInputText.text = char.imageFile;
noteskinText.text = char.noteskin;
if (char.noteskin != null) noteskinText.text = char.noteskin;
healthIconInputText.text = char.healthIcon;
vocalsInputText.text = char.vocalsFile != null ? char.vocalsFile : '';
singDurationStepper.value = char.singDuration;
Expand Down

0 comments on commit b2c8177

Please sign in to comment.