Update to Minecraft 1.15

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2019-12-11 09:00:00 +11:00
parent fb6a646cbc
commit 7887b38ac0
21 changed files with 299 additions and 322 deletions

View File

@@ -0,0 +1,12 @@
package org.bukkit.inventory;
import org.bukkit.Keyed;
/**
* Represents a complex recipe which has imperative server-defined behavior, eg
* armor dyeing.
*
* Note: Since a complex recipe has dynamic outputs, {@link #getResult()} will
* sometimes return an AIR ItemStack.
*/
public interface ComplexRecipe extends Recipe, Keyed {}