Deprecate missed magic values from 1f83111208

This commit is contained in:
Wesley Wolfe
2014-04-01 20:50:06 -05:00
parent 4bc86be459
commit 1741b91175

View File

@@ -699,7 +699,9 @@ public interface World extends PluginMessageRecipient, Metadatable {
* @return The spawned {@link FallingBlock} instance
* @throws IllegalArgumentException if {@link Location} or {@link
* Material} are null or {@link Material} is not a block
* @deprecated Magic value
*/
@Deprecated
public FallingBlock spawnFallingBlock(Location location, Material material, byte data) throws IllegalArgumentException;
/**
@@ -713,7 +715,9 @@ public interface World extends PluginMessageRecipient, Metadatable {
* @throws IllegalArgumentException if location is null, or blockId is
* invalid
* @see #spawnFallingBlock(org.bukkit.Location, org.bukkit.Material, byte)
* @deprecated Magic value
*/
@Deprecated
public FallingBlock spawnFallingBlock(Location location, int blockId, byte blockData) throws IllegalArgumentException;
/**