1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 03:35:51 +00:00

[CI skip] Weird fix but ok

This commit is contained in:
TheBusyBiscuit 2020-03-01 19:55:56 +01:00
parent f22d526398
commit e9ca9aac66
2 changed files with 4 additions and 3 deletions

View File

@ -44,6 +44,7 @@ public abstract class CropGrowthAccelerator extends SlimefunItem implements Inve
public CropGrowthAccelerator(Category category, SlimefunItemStack item, RecipeType recipeType, ItemStack[] recipe) {
super(category, item, recipeType, recipe);
createPreset(this, this::constructMenu);
registerBlockHandler(getID(), (p, b, tool, reason) -> {

View File

@ -30,9 +30,9 @@ import me.mrCookieSlime.Slimefun.api.item_transport.ItemTransportFlow;
public abstract class ElectricSmeltery extends AContainer {
private final int[] border = {4, 5, 6, 7, 8, 13, 31, 40, 41, 42, 43, 44};
private final int[] inputBorder = {0, 1, 2, 3, 9, 12, 18, 21, 27, 30, 36, 37, 38, 39};
private final int[] outputBorder = {14, 15, 16, 17, 23, 26, 32, 33, 34, 35};
private static final int[] border = {4, 5, 6, 7, 8, 13, 31, 40, 41, 42, 43, 44};
private static final int[] inputBorder = {0, 1, 2, 3, 9, 12, 18, 21, 27, 30, 36, 37, 38, 39};
private static final int[] outputBorder = {14, 15, 16, 17, 23, 26, 32, 33, 34, 35};
public ElectricSmeltery(Category category, SlimefunItemStack item, RecipeType recipeType, ItemStack[] recipe) {
super(category, item, recipeType, recipe);