mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-21 05:44:17 +00:00
Fix the javadoc
This commit is contained in:
parent
06c28d4723
commit
e858ecfa09
2 changed files with 5 additions and 1 deletions
|
@ -4,12 +4,14 @@ public interface Guardian extends Monster {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check if the Guardian is an elder Guardian
|
* Check if the Guardian is an elder Guardian
|
||||||
|
*
|
||||||
* @return true if the Guardian is an Elder Guardian, false if not
|
* @return true if the Guardian is an Elder Guardian, false if not
|
||||||
*/
|
*/
|
||||||
public boolean isElder();
|
public boolean isElder();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the Guardian to an elder Guardian or not
|
* Set the Guardian to an elder Guardian or not
|
||||||
|
*
|
||||||
* @param shouldBeElder True if this Guardian should be a elder Guardian, false if not
|
* @param shouldBeElder True if this Guardian should be a elder Guardian, false if not
|
||||||
*/
|
*/
|
||||||
public void setElder(boolean shouldBeElder);
|
public void setElder(boolean shouldBeElder);
|
||||||
|
|
|
@ -130,12 +130,14 @@ public interface Minecart extends Vehicle {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the offset of the display block.
|
* Sets the offset of the display block.
|
||||||
* @return the current block offset for this minecart.
|
*
|
||||||
|
* @param offset the block offset to set for this minecart.
|
||||||
*/
|
*/
|
||||||
public void setDisplayBlockOffset(int offset);
|
public void setDisplayBlockOffset(int offset);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the offset of the display block.
|
* Gets the offset of the display block.
|
||||||
|
*
|
||||||
* @return the current block offset for this minecart.
|
* @return the current block offset for this minecart.
|
||||||
*/
|
*/
|
||||||
public int getDisplayBlockOffset();
|
public int getDisplayBlockOffset();
|
||||||
|
|
Loading…
Add table
Reference in a new issue