Fix issues with mob conversion

This commit is contained in:
Jake Potrebic 2021-10-24 20:29:27 -07:00
parent 9ae3b87be7
commit 450f5fe793
2 changed files with 18 additions and 11 deletions

View file

@ -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);

View file

@ -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);