Skip to content

Commit

Permalink
release buildscript change
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Jul 25, 2022
1 parent 772e86b commit 16be2af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions buildscript/src/main/java/Buildscript.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
public class Buildscript extends SimpleFabricProject {
static final boolean SODIUM = true;
static final boolean CUSTOM_SODIUM = false;
static final String MC_VERSION = "1.19.1-rc1";
static final String MC_VERSION = "1.19.1";
static final String customSodiumName = "";

private static final String[] SOURCE_SETS = new String[] {
Expand All @@ -60,7 +60,7 @@ public class Buildscript extends SimpleFabricProject {

@Override
public VersionMeta createMcVersion() {
return Minecraft.getVersion(MC_VERSION);
return Minecraft.getVersion("1.19.1-rc2");
}

@Override
Expand Down Expand Up @@ -178,7 +178,7 @@ public String getVersion() {

@Override
public Path getBuildJarPath() {
return getBuildLibsDir().resolve(getModId() + "-" + "mc" + createMcVersion().version + "-" + getVersion() + ".jar");
return getBuildLibsDir().resolve(getModId() + "-" + "mc" + MC_VERSION + "-" + getVersion() + ".jar");
}

@Override
Expand Down

0 comments on commit 16be2af

Please sign in to comment.