Initial json's for machines, gui blocks are broken

This commit is contained in:
modmuss50 2016-04-24 21:49:22 +01:00
parent b55c0a3c8e
commit 61c7815f3b
92 changed files with 2032 additions and 11 deletions

View file

@ -1,5 +1,6 @@
package techreborn.command;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
@ -105,7 +106,12 @@ public class TechRebornDevCommand extends CommandBase
((EntityPlayer) sender).addChatComponentMessage(new TextComponentString("hold an item!"));
}
} else if ("gen".equals(args[0])) { //TODO DO NOT SHIP!!!
try {
new JsonGenerator().generate();
} catch (IOException e) {
e.printStackTrace();
sender.addChatMessage(new TextComponentString(e.getLocalizedMessage()));
}
}
}
}