Add more WanderingTrader API

This commit is contained in:
HexedHero 2021-05-06 14:56:26 +01:00
parent e9c4b62f7e
commit f4e92bc267

View File

@ -28,4 +28,30 @@ public interface WanderingTrader extends AbstractVillager {
* {@link WanderingTrader} is forcibly despawned
*/
public void setDespawnDelay(int despawnDelay);
// Paper start - Add more WanderingTrader API
/**
* Set if the Wandering Trader can and will drink an invisibility potion.
* @param bool whether the mob will drink
*/
public void setCanDrinkPotion(boolean bool);
/**
* Get if the Wandering Trader can and will drink an invisibility potion.
* @return whether the mob will drink
*/
public boolean canDrinkPotion();
/**
* Set if the Wandering Trader can and will drink milk.
* @param bool whether the mob will drink
*/
public void setCanDrinkMilk(boolean bool);
/**
* Get if the Wandering Trader can and will drink milk.
* @return whether the mob will drink
*/
public boolean canDrinkMilk();
// Paper end
}