Initial json's for machines, gui blocks are broken
This commit is contained in:
parent
b55c0a3c8e
commit
61c7815f3b
92 changed files with 2032 additions and 11 deletions
|
@ -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()));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue