Update to Minecraft 1.13-pre7

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2018-07-15 10:00:00 +10:00
parent debc7172fd
commit 767e4f6ccf
199 changed files with 8301 additions and 3637 deletions

View File

@@ -1,6 +1,7 @@
package org.bukkit.entity;
import org.bukkit.Material;
import org.bukkit.block.data.BlockData;
/**
* Represents a falling block
@@ -11,26 +12,18 @@ public interface FallingBlock extends Entity {
* Get the Material of the falling block
*
* @return Material of the block
*/
Material getMaterial();
/**
* Get the ID of the falling block
*
* @return ID type of the block
* @deprecated Magic value
* @deprecated use {@link #getBlockData()}
*/
@Deprecated
int getBlockId();
Material getMaterial();
/**
* Get the data for the falling block
*
* @return data of the block
* @deprecated Magic value
*/
@Deprecated
byte getBlockData();
BlockData getBlockData();
/**
* Get if the falling block will break into an item if it cannot be placed