|
9 | 9 | import io.github.pylonmc.rebar.guide.button.ItemButton; |
10 | 10 | import io.github.pylonmc.rebar.i18n.RebarArgument; |
11 | 11 | import io.github.pylonmc.rebar.item.builder.ItemStackBuilder; |
12 | | -import io.github.pylonmc.rebar.recipe.ConfigurableRecipeType; |
13 | | -import io.github.pylonmc.rebar.recipe.FluidOrItem; |
14 | | -import io.github.pylonmc.rebar.recipe.RebarRecipe; |
15 | | -import io.github.pylonmc.rebar.recipe.RecipeInput; |
16 | | -import io.github.pylonmc.rebar.recipe.RecipeType; |
| 12 | +import io.github.pylonmc.rebar.recipe.*; |
17 | 13 | import io.github.pylonmc.rebar.util.gui.GuiItems; |
18 | 14 | import io.github.pylonmc.rebar.util.gui.unit.UnitFormat; |
| 15 | +import java.util.ArrayList; |
| 16 | +import java.util.List; |
19 | 17 | import net.kyori.adventure.text.Component; |
20 | 18 | import org.bukkit.Material; |
21 | 19 | import org.bukkit.NamespacedKey; |
|
24 | 22 | import org.jetbrains.annotations.NotNull; |
25 | 23 | import xyz.xenondevs.invui.gui.Gui; |
26 | 24 |
|
27 | | -import java.util.ArrayList; |
28 | | -import java.util.List; |
29 | | - |
30 | 25 | import static io.github.pylonmc.pylon.util.PylonUtils.pylonKey; |
31 | 26 |
|
32 | 27 |
|
33 | 28 | /** |
34 | | - * @param input1 the first input item (respects amount) |
35 | | - * @param input2 the second input item (respects amount) |
36 | | - * @param result the output item (respects amount) |
| 29 | + * @param input1 the first input item |
| 30 | + * @param input2 the second input item |
| 31 | + * @param outputItem the output item (null if no item output) |
| 32 | + * @param outputFluid the output fluid (null if no fluid output) |
| 33 | + * @param outputFluidAmount the amount of the output fluid (null if no fluid output) |
37 | 34 | * @param timeTicks the recipe time in ticks |
38 | 35 | */ |
39 | 36 | public record KilnRecipe( |
|
0 commit comments