Update to Minecraft 1.13.1

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2018-08-26 12:00:00 +10:00
parent 57171268d8
commit 382097a720
5 changed files with 59 additions and 11 deletions

View File

@@ -0,0 +1,23 @@
package org.bukkit.block.data.type;
import org.bukkit.block.data.BlockData;
/**
* 'unstable' indicates whether this TNT will explode on punching.
*/
public interface TNT extends BlockData {
/**
* Gets the value of the 'unstable' property.
*
* @return the 'unstable' value
*/
boolean isUnstable();
/**
* Sets the value of the 'unstable' property.
*
* @param unstable the new 'unstable' value
*/
void setUnstable(boolean unstable);
}