Update to Minecraft 1.10

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2016-06-09 11:43:40 +10:00
parent 44956ed250
commit 7d3852dda8
10 changed files with 91 additions and 89 deletions

View File

@@ -389,4 +389,18 @@ public interface Entity extends Metadatable, CommandSender {
* @param flag if the entity is silent
*/
public void setSilent(boolean flag);
/**
* Returns whether gravity applies to this entity.
*
* @return whether gravity applies
*/
boolean hasGravity();
/**
* Sets whether gravity applies to this entity.
*
* @param gravity whether gravity should apply
*/
void setGravity(boolean gravity);
}