Implement EnderCrystal#isShowingBottom and EnderCrystal#setShowingBottom(boolean)
By: Matthew <stteg@hotmail.com>
This commit is contained in:
parent
9ec13752b3
commit
f400279a5b
1 changed files with 10 additions and 0 deletions
|
|
@ -10,6 +10,16 @@ public class CraftEnderCrystal extends CraftEntity implements EnderCrystal {
|
||||||
super(server, entity);
|
super(server, entity);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isShowingBottom() {
|
||||||
|
return getHandle().k(); // PAIL: Rename isShowingBottom
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setShowingBottom(boolean showing) {
|
||||||
|
getHandle().a(showing); // PAIL: Rename setShowingBottom
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public EntityEnderCrystal getHandle() {
|
public EntityEnderCrystal getHandle() {
|
||||||
return (EntityEnderCrystal) entity;
|
return (EntityEnderCrystal) entity;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue