Update to Minecraft 1.15

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2019-12-11 09:00:00 +11:00
parent fb6a646cbc
commit 7887b38ac0
21 changed files with 299 additions and 322 deletions

View File

@@ -0,0 +1,30 @@
package org.bukkit.block.data.type;
import org.bukkit.block.data.Directional;
/**
* 'honey_level' represents the amount of honey stored in the hive.
*/
public interface Beehive extends Directional {
/**
* Gets the value of the 'honey_level' property.
*
* @return the 'honey_level' value
*/
int getHoneyLevel();
/**
* Sets the value of the 'honey_level' property.
*
* @param honeyLevel the new 'honey_level' value
*/
void setHoneyLevel(int honeyLevel);
/**
* Gets the maximum allowed value of the 'honey_level' property.
*
* @return the maximum 'honey_level' value
*/
int getMaximumHoneyLevel();
}