Skip to content

Commit

Permalink
24w14potato support
Browse files Browse the repository at this point in the history
forked from 24w12a
  • Loading branch information
modmuss50 committed Apr 1, 2024
1 parent d69cb72 commit b24c325
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,10 @@ private static String normalizeSpecialVersion(String version) {
// Minecraft 23w13a_or_b, forked from 23w13a
return "1.20-alpha.23.13.ab";

case "24w14potato":
// Minecraft 24w14potato, forked from 24w12a
return "1.20.5-alpha.24.12.potato";

default:
return null; //Don't recognise the version
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public final class FabricLoaderImpl extends net.fabricmc.loader.FabricLoader {

public static final int ASM_VERSION = Opcodes.ASM9;

public static final String VERSION = "0.15.7";
public static final String VERSION = "0.15.8";
public static final String MOD_ID = "fabricloader";

public static final String CACHE_DIR_NAME = ".fabric"; // relative to game dir
Expand Down

0 comments on commit b24c325

Please sign in to comment.