We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dd7c42 commit 5cc6627Copy full SHA for 5cc6627
1 file changed
src/main/java/net/minecraftforge/mcpcleanup/MCPCleanup.java
@@ -53,6 +53,7 @@ public class MCPCleanup {
53
private boolean fernflower_abstract = true;
54
55
public static enum Mode implements ValueConverter<Mode> {
56
+ MC_1_6_4("1.6.4"),
57
MC_1_7_2("1.7.2"),
58
// Cleanups used for Minecraft 1.8/old gradle. This does global replacements
59
// instead of looping over every line
@@ -209,6 +210,14 @@ private void setupMode() {
209
210
if (mode == null)
211
return;
212
switch (this.mode) {
213
+ case MC_1_6_4:
214
+ this.fernflower = true;
215
+ this.fernflower_abstract = false;
216
+ this.basic = true;
217
+ this.gl = true;
218
+ this.fml = 10;
219
+ this.astyle = true;
220
+ break;
221
case MC_1_7_2:
222
this.fernflower = true;
223
this.fernflower_abstract = false;
0 commit comments