Made some things public

This commit is contained in:
modmuss50 2015-05-10 20:51:57 +01:00
parent 6353f02541
commit 9ffce3b355
3 changed files with 2 additions and 15 deletions

View file

@ -36,12 +36,6 @@ public class TechRebornDevCommand extends CommandBase {
} else if ("help".equals(args[0])) {
sender.addChatMessage(new ChatComponentText("recipes - Reloads all of the machine recipes"));
} else if ("recipes".equals(args[0])) {
long startTime = System.currentTimeMillis();
RecipeHanderer.recipeList.clear();
RecipeHanderer.recipeList.addAll(RecipeHanderer.recipeListBackup);
RecipeHanderer.addOreDicRecipes();
long endTime = System.currentTimeMillis();
sender.addChatMessage(new ChatComponentText("Reloaded oreDictionary Recipes in" + (endTime - startTime) + " milliseconds"));
sender.addChatMessage(new ChatComponentText(RecipeHanderer.recipeList.size() + " recipes loaded"));
}