mirror of
https://github.com/Hexeption/MCP-Reborn.git
synced 2025-09-04 13:20:31 +00:00
1.16.1
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -15,4 +15,7 @@ gradle-app.setting
|
||||
|
||||
#IDE files
|
||||
.idea
|
||||
*.iml
|
||||
*.iml
|
||||
run/
|
||||
|
||||
out/
|
||||
|
@@ -10,6 +10,7 @@
|
||||
|
||||
| Version | Support |
|
||||
| --- | --- |
|
||||
| 1.16.1| ✔ |
|
||||
| 1.15.2| ✔ |
|
||||
| 1.15.1| ✔ |
|
||||
| 1.15| ✔ |
|
||||
|
21
build.gradle
21
build.gradle
@@ -24,10 +24,10 @@ group = 'me.yourname'
|
||||
version = '1.0.0'
|
||||
|
||||
ext {
|
||||
minecraft_version = '1.15.2'
|
||||
mcp_version = '20200515.085601'
|
||||
minecraft_version = '1.16.1'
|
||||
mcp_version = '20200625.134731'
|
||||
mappings_channel = 'snapshot'
|
||||
mappings_version = '20200622-1.15.1'
|
||||
mappings_version = '20200514-1.16'
|
||||
}
|
||||
|
||||
repositories {
|
||||
@@ -36,7 +36,7 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
shade 'net.minecraftforge:forgespi:1.1.+'
|
||||
shade 'net.minecraftforge:forgespi:3.0.+'
|
||||
// Use the shade to add the lib to the jar
|
||||
// or use compile if you want to load the lib from the version.json
|
||||
// from a maven repo
|
||||
@@ -79,7 +79,7 @@ task runclient(type: JavaExec) {
|
||||
args '--gameDir', '.'
|
||||
args '--version', minecraft_version
|
||||
args '--assetsDir', downloadAssets.output
|
||||
args '--assetIndex', "1.15"
|
||||
args '--assetIndex', "1.16"
|
||||
args '--accessToken', '0'
|
||||
main 'net.minecraft.client.main.Main'
|
||||
workingDir 'run'
|
||||
@@ -95,3 +95,14 @@ task setup() {
|
||||
into 'run/assets'
|
||||
}
|
||||
}
|
||||
|
||||
task copyAssets {
|
||||
group = "MCP"
|
||||
description = "Download and place the assets into the run folder"
|
||||
dependsOn ':downloadAssets'
|
||||
mkdir 'run/assets'
|
||||
copy {
|
||||
from downloadAssets.output.path
|
||||
into 'run/assets'
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user