Skip to content

Commit 2844804

Browse files
committed
Revert "feat: option to automatically set max parallels in Parallel Hatches"
This reverts commit fb1f1cf.
1 parent 5280df0 commit 2844804

6 files changed

Lines changed: 3 additions & 52 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ Current features:
88
* 64A Energy Converters
99
* The Wireless Active Transformer (WAT)
1010
* Has an opt-in coolant system, where the WAT requires coolant to be used, or it'll explode (or just stop if GTm is set to have harmless active transformers)
11-
* Automatically set placed Parallel Hatches to their maximum parallels
1211

1312
All features can be enabled or disabled in the config.
1413

build.gradle

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ sourceSets {
1414
}
1515
}
1616

17-
mixin {
18-
add sourceSets.main, "mixins.${mod_id}.refmap.json"
19-
config "${mod_id}.mixins.json"
20-
}
21-
2217
repositories {
2318
mavenLocal()
2419
mavenCentral()
@@ -143,9 +138,6 @@ apply from: "$rootDir/gradle/scripts/spotless.gradle"
143138
dependencies {
144139
compileOnly("org.jetbrains:annotations:26.0.1")
145140

146-
// Apply Mixin AP
147-
annotationProcessor('org.spongepowered:mixin:0.8.5:processor')
148-
149141
// JEI, EMI, Jade
150142
modCompileOnly("mezz.jei:jei-${minecraft_version}-forge-api:${jei_version}")
151143
modCompileOnly("mezz.jei:jei-${minecraft_version}-common-api:${jei_version}")

src/main/java/net/neganote/gtutilities/config/UtilConfig.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,6 @@ public static class FeatureConfigs {
4949
@Configurable.Comment({ "Whether the Wireless Active Transformer is enabled." })
5050
public boolean pterbEnabled = true;
5151

52-
@Configurable
53-
@Configurable.Comment({
54-
"Whether placed Parallel Hatches should be automatically set to their maximum parallels." })
55-
public boolean parallelHatchAutoConfigure = false;
56-
5752
@Configurable
5853
@Configurable.Comment({ "Base amount of WAT coolant to drain every second.",
5954
"(Setting both this amount and the IO multiplier to 0 disables the coolant mechanic.)" })

src/main/java/net/neganote/gtutilities/mixin/ParallelHatchPartMachineMixin.java

Lines changed: 0 additions & 32 deletions
This file was deleted.

src/main/resources/META-INF/mods.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ GregTech Utilities
2323
A GregTech Modern addon, adding some nice quality-of-life features.
2424
'''
2525

26-
[[mixins]]
27-
config="${mod_id}.mixins.json"
28-
2926
[[dependencies.${mod_id}]]
3027
modId = "forge"
3128
mandatory = true
@@ -43,4 +40,4 @@ A GregTech Modern addon, adding some nice quality-of-life features.
4340
mandatory = true
4441
versionRange = "[${gtceu_version},)"
4542
ordering = "AFTER"
46-
side = "BOTH"
43+
side = "BOTH"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"required": true,
3-
"package": "net.neganote.gtutilities.mixin",
3+
"package": "com.example.examplemod.mixin",
44
"compatibilityLevel": "JAVA_17",
5+
"minVersion": "0.8",
56
"mixins": [
6-
"ParallelHatchPartMachineMixin"
77
],
88
"client": [
99
],

0 commit comments

Comments
 (0)