1.1.1
ModUpdater/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2020-06-25 18:24:27 -04:00
parent 897cec88d3
commit 26073170b7
3 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,8 @@
# Changelog
**1.1.1**
* Use CurseForge For Fabric API
**1.1.0**
* Stabilize
* Improve Error Messages

View File

@ -9,7 +9,7 @@ org.gradle.jvmargs = -Xmx1G
fabric_loader_version = 0.8.8+build.202
# Mod Properties
mod_version = 1.1.0
mod_version = 1.1.1
maven_group = com.thebrokenrail
# Dependencies

View File

@ -97,10 +97,8 @@ public class Util {
switch (modID) {
case "fabric": {
Map<String, Object> map = new HashMap<>();
map.put("strategy", "maven");
map.put("repository", "https://maven.fabricmc.net");
map.put("group", "net.fabricmc.fabric-api");
map.put("artifact", "fabric-api");
map.put("strategy", "curseforge");
map.put("projectID", 306612);
return new ConfigObjectHardcoded(map);
}
case "modmenu": {