Skip to content
This repository was archived by the owner on Sep 9, 2023. It is now read-only.

Commit 5bab5df

Browse files
Correct launcher check
1 parent e975066 commit 5bab5df

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ml/northwestwind/Utils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ public V setValue(V value) {
221221
}
222222

223223
public static String getOppositeLauncher(String launcher) {
224-
if (launcher.equalsIgnoreCase("forge")) return "fabric";
225-
if (launcher.equalsIgnoreCase("fabric")) return "forge";
224+
if (launcher.equalsIgnoreCase("forge")) return "Fabric";
225+
if (launcher.equalsIgnoreCase("fabric")) return "Forge";
226226
return null;
227227
}
228228

0 commit comments

Comments
 (0)