Skip to content

Commit 5cc6627

Browse files
committed
1.6.4 mode
1 parent 3dd7c42 commit 5cc6627

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/main/java/net/minecraftforge/mcpcleanup/MCPCleanup.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public class MCPCleanup {
5353
private boolean fernflower_abstract = true;
5454

5555
public static enum Mode implements ValueConverter<Mode> {
56+
MC_1_6_4("1.6.4"),
5657
MC_1_7_2("1.7.2"),
5758
// Cleanups used for Minecraft 1.8/old gradle. This does global replacements
5859
// instead of looping over every line
@@ -209,6 +210,14 @@ private void setupMode() {
209210
if (mode == null)
210211
return;
211212
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;
212221
case MC_1_7_2:
213222
this.fernflower = true;
214223
this.fernflower_abstract = false;

0 commit comments

Comments
 (0)