-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodconfig.js
50 lines (42 loc) · 1.38 KB
/
modconfig.js
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
41
42
43
44
45
46
47
48
49
50
var modConfig = {}
modConfig.modifications = []
modConfig.modifications["Botania 1.12"] = {
configPath: "botania.cfg",
configModifications: {
"B:fancySkybox.enable=true": "B:fancySkybox.enable=false",
"B:shaders.enabled=true": "B:shaders.enabled=false"
}
}
modConfig.modifications["Botania 1.16.5"] = {
configPath: "botania-client.toml",
configModifications: {
"shaders = true": "shaders = false",
"enabled = true": "enabled = false"
}
}
modConfig.modifications["CC: Tweaked 1.16.5"] = {
configPath: "computercraft-client.toml",
configModifications: {
"monitor_renderer = \"BEST\"": "monitor_renderer=\"VBO\"",
"monitor_renderer = \"TBO\"": "monitor_renderer=\"VBO\""
}
}
modConfig.modifications["Astral Sorcery 1.16.5"] = {
configPath: "astralsorcery-client.toml",
configModifications: {
"skyRenderingEnabled = [\"minecraft:overworld\"]": "skyrenderingEnabled = []"
}
}
modConfig.modifications["Advanced Rocketry 1.12.2"] = {
configPath: "advRocketry/advancedRocketry.cfg",
configModifications: {
"B:overworldSkyOverride=true": "B:overworldSkyOverride=false"
}
}
/*modConfig.modifications["Astral Sorcery 1.12"] = {
configPath: "astralsorcery.cfg",
configModifications: {
'S:weakSkyRenders <\n >': 'S:weakSkyRenders < \n0\n>'
}
}*/
module.exports = modConfig