Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Dev4Mod committed May 14, 2024
1 parent 76aec94 commit 2aa1cfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private void hookColors() throws Exception {
var secondaryColor = secondaryColorInt == 0 ? "0" : String.format("#%08X", secondaryColorInt);
var backgroundColor = backgroundColorInt == 0 ? "0" : String.format("#%08X", backgroundColorInt);

if (!prefs.getBoolean("changecolor", false)) {
if (prefs.getBoolean("changecolor", false)) {
for (var c : IColors.colors.keySet()) {
if (!primaryColor.equals("0")) {
switch (c) {
Expand Down

0 comments on commit 2aa1cfe

Please sign in to comment.