geforkt von Mirrors/Paper
Fix issues with mob conversion
Dieser Commit ist enthalten in:
Ursprung
9ae3b87be7
Commit
450f5fe793
@ -44,13 +44,17 @@ public interface Hoglin extends Animals, Enemy {
|
||||
public int getConversionTime();
|
||||
|
||||
/**
|
||||
* Sets the amount of ticks until this entity will be converted to a Zoglin.
|
||||
* Sets the conversion counter value. The counter is incremented
|
||||
* every tick the method {@link #isConverting()} returns true. Setting
|
||||
* this value will not start the conversion if the {@link Hoglin} is
|
||||
* not in a valid environment ({@link org.bukkit.World#isPiglinSafe})
|
||||
* to convert, is immune to zombification ({@link #isImmuneToZombification()})
|
||||
* or has no AI ({@link #hasAI}).
|
||||
*
|
||||
* When this reaches 0, the entity will be converted. A value of less than 0
|
||||
* will stop the current conversion process without converting the current
|
||||
* entity.
|
||||
* When this reaches 300, the entity will be converted. To stop the
|
||||
* conversion use {@link #setImmuneToZombification(boolean)}.
|
||||
*
|
||||
* @param time new conversion time
|
||||
* @param time new conversion counter
|
||||
*/
|
||||
public void setConversionTime(int time);
|
||||
|
||||
|
@ -31,14 +31,17 @@ public interface PiglinAbstract extends Monster, Ageable {
|
||||
public int getConversionTime();
|
||||
|
||||
/**
|
||||
* Sets the amount of ticks until this entity will be converted to a
|
||||
* Zombified Piglin.
|
||||
* Sets the conversion counter value. The counter is incremented
|
||||
* every tick the method {@link #isConverting()} returns true. Setting
|
||||
* this value will not start the conversion if the {@link PiglinAbstract} is
|
||||
* not in a valid environment ({@link org.bukkit.World#isPiglinSafe})
|
||||
* to convert, is immune to zombification ({@link #isImmuneToZombification()})
|
||||
* or has no AI ({@link #hasAI}).
|
||||
*
|
||||
* When this reaches 0, the entity will be converted. A value of less than 0
|
||||
* will stop the current conversion process without converting the current
|
||||
* entity.
|
||||
* When this reaches 300, the entity will be converted. To stop the
|
||||
* conversion use {@link #setImmuneToZombification(boolean)}.
|
||||
*
|
||||
* @param time new conversion time
|
||||
* @param time new conversion counter
|
||||
*/
|
||||
public void setConversionTime(int time);
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren