mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-14 19:55:52 -07:00
Add EnderCrystal#isShowingBottom and EnderCrystal#setShowingBottom(boolean)
By: Matthew <stteg@hotmail.com>
This commit is contained in:
@@ -4,4 +4,20 @@ package org.bukkit.entity;
|
|||||||
* A crystal that heals nearby EnderDragons
|
* A crystal that heals nearby EnderDragons
|
||||||
*/
|
*/
|
||||||
public interface EnderCrystal extends Entity {
|
public interface EnderCrystal extends Entity {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return whether or not this end crystal is showing the
|
||||||
|
* bedrock slate underneath it.
|
||||||
|
*
|
||||||
|
* @return true if the bottom is being shown
|
||||||
|
*/
|
||||||
|
boolean isShowingBottom();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets whether or not this end crystal is showing the
|
||||||
|
* bedrock slate underneath it.
|
||||||
|
*
|
||||||
|
* @param showing whether the bedrock slate should be shown
|
||||||
|
*/
|
||||||
|
void setShowingBottom(boolean showing);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user