mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 20:07:41 +01:00
Add more WanderingTrader API
This commit is contained in:
parent
e9c4b62f7e
commit
f4e92bc267
@ -28,4 +28,30 @@ public interface WanderingTrader extends AbstractVillager {
|
|||||||
* {@link WanderingTrader} is forcibly despawned
|
* {@link WanderingTrader} is forcibly despawned
|
||||||
*/
|
*/
|
||||||
public void setDespawnDelay(int despawnDelay);
|
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
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user