diff --git a/paper-api/src/main/java/org/bukkit/entity/Creeper.java b/paper-api/src/main/java/org/bukkit/entity/Creeper.java index 1b8ece6df..5793193d9 100644 --- a/paper-api/src/main/java/org/bukkit/entity/Creeper.java +++ b/paper-api/src/main/java/org/bukkit/entity/Creeper.java @@ -37,6 +37,22 @@ public interface Creeper extends Monster { */ public int getMaxFuseTicks(); + /** + * Set the fuse ticks for this Creeper, where the ticks is the amount of + * time in which a creeper has been in the primed state. + * + * @param ticks the new fuse ticks + */ + public void setFuseTicks(int ticks); + + /** + * Get the maximum fuse ticks for this Creeper, where the ticks is the + * amount of time in which a creeper has been in the primed state. + * + * @return the fuse ticks + */ + public int getFuseTicks(); + /** * Set the explosion radius in which this Creeper's explosion will affect. *