mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-10 09:02:09 -07:00
#581: Add methods to modify despawn delay for wandering villagers
By: DiamondDagger590 <diamonddagger590@gmail.com>
This commit is contained in:
@@ -3,4 +3,29 @@ package org.bukkit.entity;
|
|||||||
/**
|
/**
|
||||||
* Represents a wandering trader NPC
|
* Represents a wandering trader NPC
|
||||||
*/
|
*/
|
||||||
public interface WanderingTrader extends AbstractVillager { }
|
public interface WanderingTrader extends AbstractVillager {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the despawn delay before this {@link WanderingTrader} is forcibly
|
||||||
|
* despawned.
|
||||||
|
*
|
||||||
|
* If this is less than or equal to 0, then the trader will not be
|
||||||
|
* despawned.
|
||||||
|
*
|
||||||
|
* @return The despawn delay before this {@link WanderingTrader} is forcibly
|
||||||
|
* despawned
|
||||||
|
*/
|
||||||
|
public int getDespawnDelay();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the despawn delay before this {@link WanderingTrader} is forcibly
|
||||||
|
* despawned.
|
||||||
|
*
|
||||||
|
* If this is less than or equal to 0, then the trader will not be
|
||||||
|
* despawned.
|
||||||
|
*
|
||||||
|
* @param despawnDelay The new despawn delay before this
|
||||||
|
* {@link WanderingTrader} is forcibly despawned
|
||||||
|
*/
|
||||||
|
public void setDespawnDelay(int despawnDelay);
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user