Start work on json exporter

This commit is contained in:
modmuss50 2016-04-24 17:24:30 +01:00
parent 92741698f4
commit f33f98690d
5 changed files with 195 additions and 6 deletions

View file

@ -19,6 +19,7 @@ import net.minecraftforge.fml.common.registry.GameData;
import net.minecraftforge.fml.common.registry.GameRegistry;
import reborncore.api.fuel.FluidPowerManager;
import reborncore.api.recipe.RecipeHandler;
import techreborn.dev.JsonGenerator;
public class TechRebornDevCommand extends CommandBase
{
@ -103,6 +104,8 @@ public class TechRebornDevCommand extends CommandBase
} else {
((EntityPlayer) sender).addChatComponentMessage(new TextComponentString("hold an item!"));
}
} else if ("gen".equals(args[0])) { //TODO DO NOT SHIP!!!
new JsonGenerator().generate();
}
}
}