Fixed formatting

This commit is contained in:
Jared 2017-07-25 22:56:19 +02:00
parent d4a9c12add
commit 03f8eed67b
14 changed files with 111 additions and 104 deletions

View file

@ -115,6 +115,7 @@ public class Anvil {
}
public static class RemoveShaped extends BaseUndoable {
private final IItemStack output;
private final IIngredient[][] ingredients;
@ -151,6 +152,7 @@ public class Anvil {
}
public static class RemoveShapeless extends BaseUndoable {
private final IItemStack output;
private final IIngredient[] ingredients;

View file

@ -26,6 +26,7 @@ public class Buoyancy {
}
public static class Set extends BaseMapAddition<Stack, Float> {
protected Set(StackMap<Float> map) {
super("Set Item Buoyancy", HCBuoy.buoyancy, map);
}

View file

@ -52,6 +52,7 @@ public class Kiln {
public static class KilnBlock extends BaseUndoable {
private IBlockState state;
protected KilnBlock(IBlockState state) {

View file

@ -32,6 +32,7 @@ public class Turntable {
}
public static class Add extends BMAdd {
public Add(ItemStack input, ItemStack output, List<ItemStack> scraps) {
super(TurntableRecipeCategory.UID, TurntableManager.INSTANCE, Lists.newArrayList(new TurntableRecipe(input, output, scraps)));
}
@ -45,6 +46,7 @@ public class Turntable {
}
public static class Remove extends BaseListRemoval<TurntableRecipe> {
protected Remove(ItemStack input) {
super("Remove Turntable Recipe", TurntableManager.INSTANCE.getRecipes(), TurntableManager.INSTANCE.removeTurntableRecipe(input));
}

View file

@ -6,6 +6,7 @@ import com.blamejared.mtlib.utils.BaseListRemoval;
import net.minecraft.item.ItemStack;
public class BMRemove extends BaseListRemoval<BlockMetaRecipe> {
public BMRemove(String name, BlockMetaManager recipes, ItemStack input) {
super(name, recipes.getRecipes(), recipes.removeRecipes(input));
}