Avoid item stack IDs if we can.
Dieser Commit ist enthalten in:
Ursprung
125bfbad30
Commit
c9fd6b4b93
@ -24,6 +24,7 @@ import java.util.Map;
|
|||||||
|
|
||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
|
|
||||||
|
import org.bukkit.Material;
|
||||||
import org.bukkit.inventory.ItemStack;
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
|
||||||
import com.comphenix.protocol.reflect.FieldAccessException;
|
import com.comphenix.protocol.reflect.FieldAccessException;
|
||||||
@ -162,7 +163,7 @@ public class NbtFactory {
|
|||||||
throw new IllegalArgumentException("Stack cannot be NULL.");
|
throw new IllegalArgumentException("Stack cannot be NULL.");
|
||||||
if (!MinecraftReflection.isCraftItemStack(stack))
|
if (!MinecraftReflection.isCraftItemStack(stack))
|
||||||
throw new IllegalArgumentException("Stack must be a CraftItemStack.");
|
throw new IllegalArgumentException("Stack must be a CraftItemStack.");
|
||||||
if (stack.getTypeId() == 0)
|
if (stack.getType() == Material.AIR)
|
||||||
throw new IllegalArgumentException("ItemStacks representing air cannot store NMS information.");
|
throw new IllegalArgumentException("ItemStacks representing air cannot store NMS information.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren