update libraries, switch to tiny-remapper as default

This commit is contained in:
Adrian Siekierka
2018-10-31 15:23:50 +01:00
parent 5ca71d9d15
commit a99bee8f7c
3 changed files with 4 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ public class LoomGradleExtension {
public String fabricVersion;
public String pomfVersion;
public String refmapName;
public String jarMapper = Constants.JAR_MAPPER_ENIGMA; // enigma, tiny
public String jarMapper = Constants.JAR_MAPPER_TINY; // enigma, tiny
public boolean localMappings = false;
//Not to be set in the build.gradle

View File

@@ -44,7 +44,7 @@ public class MapJarsTask extends DefaultTask {
}
if (!extension.hasPomf()) {
this.getLogger().lifecycle("POMF version not set, skipping mapping!");
this.getLogger().lifecycle("Mapping version not set, skipping mapping!");
FileUtils.copyFile(Constants.MINECRAFT_MERGED_JAR.get(extension), Constants.MINECRAFT_MAPPED_JAR.get(extension));
return;
}