Skip to content

Commit

Permalink
add refmap to the build.gradle so that things don't crash, verbump
Browse files Browse the repository at this point in the history
  • Loading branch information
LemmaEOF committed Mar 31, 2019
1 parent 666d5b8 commit a668981
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@ archivesBaseName = ext.projectName;
group = ext.group;
version = ext.version + ((ext.snapshot) ? "-SNAPSHOT" : "");


minecraft {
refmapName = 'mixins.cotton.refmap.json'
}

repositories {
mavenCentral()
maven {
Expand Down
2 changes: 1 addition & 1 deletion project.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
projectName = "cotton";
group = "io.github.cottonmc";
version = "0.1.2+19w13b";
version = "0.2.0+19w13b";
snapshot = true;

minecraft = "19w13b";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static void removeRecipe(Identifier id) {
out.flush();
out.close();
} catch (IOException e) {
Cotton.logger.warn("Failed to remove loot table " + id.toString() + ": " + e);
Cotton.logger.warn("Failed to remove recipe " + id.toString() + ": " + e);
}
}

Expand Down

0 comments on commit a668981

Please sign in to comment.