Commits

Matthew Steglinski authored and md_5 committed 377d5bba0cd
Add EnderCrystal#isShowingBottom and EnderCrystal#setShowingBottom(boolean)
No tags

src/main/java/org/bukkit/entity/EnderCrystal.java

Modified
1 1 package org.bukkit.entity;
2 2
3 3 /**
4 4 * A crystal that heals nearby EnderDragons
5 5 */
6 6 public interface EnderCrystal extends Entity {
7 +
8 + /**
9 + * Return whether or not this end crystal is showing the
10 + * bedrock slate underneath it.
11 + *
12 + * @return true if the bottom is being shown
13 + */
14 + boolean isShowingBottom();
15 +
16 + /**
17 + * Sets whether or not this end crystal is showing the
18 + * bedrock slate underneath it.
19 + *
20 + * @param showing whether the bedrock slate should be shown
21 + */
22 + void setShowingBottom(boolean showing);
7 23 }

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut