Skip to content

Commit

Permalink
hr
Browse files Browse the repository at this point in the history
  • Loading branch information
Joalor64GH authored Jun 6, 2024
1 parent f40a757 commit d8bcad9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions source/meta/data/options/NoteOffsetState.hx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package meta.data.options;

import objects.userinterface.menu.*;
import objects.userinterface.Bar;
import objects.background.*;

class NoteOffsetState extends MusicBeatState
Expand Down
2 changes: 1 addition & 1 deletion source/meta/state/editors/CharacterEditorState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1062,7 +1062,7 @@ class CharacterEditorState extends MusicBeatState
healthColorStepperR.value = char.healthColorArray[0];
healthColorStepperG.value = char.healthColorArray[1];
healthColorStepperB.value = char.healthColorArray[2];
healthBar.leftBar.color = healthBar.rightBar.color = FlxColor.fromRGB(character.healthColorArray[0], character.healthColorArray[1], character.healthColorArray[2]);
healthBar.leftBar.color = healthBar.rightBar.color = FlxColor.fromRGB(char.healthColorArray[0], char.healthColorArray[1], char.healthColorArray[2]);
}

function updatePresence() {
Expand Down

0 comments on commit d8bcad9

Please sign in to comment.