Rewrites a lot of scrapper code to fix actual and potential bugs
All checks were successful
EpicKnarvik97/Blacksmith/pipeline/head This commit looks good
All checks were successful
EpicKnarvik97/Blacksmith/pipeline/head This commit looks good
This commit is contained in:
@ -0,0 +1,16 @@
|
||||
package net.knarcraft.blacksmith.container;
|
||||
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.bukkit.inventory.Recipe;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* The result of a recipe's salvage
|
||||
*
|
||||
* @param recipe <p>The selected recipe</p>
|
||||
* @param salvage <p>The resulting salvage</p>
|
||||
*/
|
||||
public record RecipeResult(@NotNull Recipe recipe, @NotNull List<ItemStack> salvage) {
|
||||
}
|
Reference in New Issue
Block a user