Skip to content

Commit

Permalink
typo and raising the if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
WilloIzCitron committed May 10, 2024
1 parent b0e2f9c commit 2cf61a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/bluearchive/ArchiveDustry.java
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,14 @@ public void init(){
loadSettings();
new Links.LinkEntry("ba-youtube", "https://www.youtube.com/channel/UCsrnDYrkovQhCCE8kwKcvKQ", Icon.play, Color.red);
Log.info("[ArchivD] Link Generated!");
if(Core.settings.getBool("ba-setSong")){
if(Core.settings.getBool("ba-setSongRecollection")) {
Musics.menu = tree.loadMusic("menurcl");
} else if(Core.settings.getBool("ba-setSong")) {
Musics.menu = tree.loadMusic("menure-aoh");
} else {
Musics.menu = tree.loadMusic("menucm");
}
if(Core.settings.getBool("ba-setSongRecollection")){
Musics.menu = tree.loadMusic("menrcl");
}

}

void loadSettings(){
Expand Down

0 comments on commit 2cf61a1

Please sign in to comment.