-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·40 lines (37 loc) · 869 Bytes
/
build.gradle
File metadata and controls
executable file
·40 lines (37 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
plugins {
id 'discombobulator' version "${discombobulator_version}"
}
discombobulator {
// List of Minecraft versions to use with Discombobulator
// This list has to be highest version to lowest version
// and is responsible for correctly enabeling the versions.
//
// The syntax is "mcversion":"pathToFolder",
//
// If your folder, where your MC version is stored is different,
// Use "1.21.4":"Fabric1.21.4",
//
// You don't have to stick to the 1.21.4 version scheme, you can input
// "25w09b" or "oneblockAtATime" here,
// and you can use them in the code:
//
// // # 25w09b
// Minecraft.getMinecraft();
// // # 1.21.11
// Minecraft.getMinecraft();
// // # oneblockAtATime
// Yay
//
//
versions = [
"1.21.11":"",
"1.20.6":"",
"1.19.4":"",
"1.18.2":"",
"1.17.1":"",
"1.16.5":"",
"1.16.1":"",
"1.15.2":"",
"1.14.4":""
]
}