-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (30 loc) · 783 Bytes
/
build.gradle
File metadata and controls
33 lines (30 loc) · 783 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
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.12.2":"mbh-1.12.2",
"1.11.2":"mbh-1.11.2"
]
}