Skip to content

Commit

Permalink
Unmark Quilt and NeoForge as experimental
Browse files Browse the repository at this point in the history
  • Loading branch information
Juuxel committed Jul 2, 2024
1 parent 36f1992 commit 3f1d69b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/net/fabricmc/loom/util/ModPlatform.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
public enum ModPlatform {
FABRIC("Fabric", false),
FORGE("Forge", false),
QUILT("Quilt", true),
NEOFORGE("NeoForge", true);
QUILT("Quilt", false),
NEOFORGE("NeoForge", false);

private final String displayName;
boolean experimental;
private final boolean experimental;

ModPlatform(String displayName, boolean experimental) {
this.displayName = displayName;
Expand Down

0 comments on commit 3f1d69b

Please sign in to comment.