135 lines
		
	
	
	
		
			4.2 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			135 lines
		
	
	
	
		
			4.2 KiB
			
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
 | 
						|
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
 | 
						|
Date: Wed, 26 May 2021 19:34:43 -0400
 | 
						|
Subject: [PATCH] More Projectile API
 | 
						|
 | 
						|
 | 
						|
diff --git a/src/main/java/org/bukkit/entity/Firework.java b/src/main/java/org/bukkit/entity/Firework.java
 | 
						|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
 | 
						|
--- a/src/main/java/org/bukkit/entity/Firework.java
 | 
						|
+++ b/src/main/java/org/bukkit/entity/Firework.java
 | 
						|
@@ -0,0 +0,0 @@ public interface Firework extends Projectile {
 | 
						|
 
 | 
						|
     /**
 | 
						|
      * Apply the provided meta to the fireworks
 | 
						|
+     * <p>
 | 
						|
+     * Adjusts detonation ticks automatically.
 | 
						|
      *
 | 
						|
      * @param meta The FireworkMeta to apply
 | 
						|
      */
 | 
						|
@@ -0,0 +0,0 @@ public interface Firework extends Projectile {
 | 
						|
     @org.jetbrains.annotations.Nullable
 | 
						|
     public LivingEntity getBoostedEntity();
 | 
						|
     // Paper end
 | 
						|
+
 | 
						|
+    // Paper start - Firework API
 | 
						|
+    /**
 | 
						|
+     * Gets the item used in the firework.
 | 
						|
+     *
 | 
						|
+     * @return firework item
 | 
						|
+     */
 | 
						|
+    @NotNull
 | 
						|
+    public org.bukkit.inventory.ItemStack getItem();
 | 
						|
+
 | 
						|
+    /**
 | 
						|
+     * Sets the item used in the firework.
 | 
						|
+     * <p>
 | 
						|
+     * Firework explosion effects are used from this item.
 | 
						|
+     *
 | 
						|
+     * @param itemStack item to set
 | 
						|
+     */
 | 
						|
+    void setItem(@org.jetbrains.annotations.Nullable org.bukkit.inventory.ItemStack itemStack);
 | 
						|
+
 | 
						|
+    /**
 | 
						|
+     * Gets the number of ticks the firework has flown.
 | 
						|
+     *
 | 
						|
+     * @return ticks flown
 | 
						|
+     */
 | 
						|
+    int getTicksFlown();
 | 
						|
+
 | 
						|
+    /**
 | 
						|
+     * Sets the number of ticks the firework has flown.
 | 
						|
+     * Setting this greater than detonation ticks will cause the firework to explode.
 | 
						|
+     *
 | 
						|
+     * @param ticks ticks flown
 | 
						|
+     */
 | 
						|
+    void setTicksFlown(int ticks);
 | 
						|
+
 | 
						|
+    /**
 | 
						|
+     * Gets the number of ticks the firework will detonate on.
 | 
						|
+     *
 | 
						|
+     * @return the tick to detonate on
 | 
						|
+     */
 | 
						|
+    int getTicksToDetonate();
 | 
						|
+
 | 
						|
+    /**
 | 
						|
+     * Set the amount of ticks the firework will detonate on.
 | 
						|
+     *
 | 
						|
+     * @param ticks ticks to detonate on
 | 
						|
+     */
 | 
						|
+    void setTicksToDetonate(int ticks);
 | 
						|
+    // Paper stop
 | 
						|
 }
 | 
						|
diff --git a/src/main/java/org/bukkit/entity/FishHook.java b/src/main/java/org/bukkit/entity/FishHook.java
 | 
						|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
 | 
						|
--- a/src/main/java/org/bukkit/entity/FishHook.java
 | 
						|
+++ b/src/main/java/org/bukkit/entity/FishHook.java
 | 
						|
@@ -0,0 +0,0 @@ public interface FishHook extends Projectile {
 | 
						|
          */
 | 
						|
         BOBBING;
 | 
						|
     }
 | 
						|
+
 | 
						|
+    // Paper start - More FishHook API
 | 
						|
+    /**
 | 
						|
+     * Get the number of ticks the hook needs to wait for a fish to bite.
 | 
						|
+     *
 | 
						|
+     * @return Number of ticks
 | 
						|
+     */
 | 
						|
+    int getWaitTime();
 | 
						|
+
 | 
						|
+    /**
 | 
						|
+     * Sets the number of ticks the hook needs to wait for a fish to bite.
 | 
						|
+     *
 | 
						|
+     * @param ticks Number of ticks
 | 
						|
+     */
 | 
						|
+    void setWaitTime(int ticks);
 | 
						|
+    // Paper end
 | 
						|
 }
 | 
						|
diff --git a/src/main/java/org/bukkit/entity/ThrownPotion.java b/src/main/java/org/bukkit/entity/ThrownPotion.java
 | 
						|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
 | 
						|
--- a/src/main/java/org/bukkit/entity/ThrownPotion.java
 | 
						|
+++ b/src/main/java/org/bukkit/entity/ThrownPotion.java
 | 
						|
@@ -0,0 +0,0 @@ public interface ThrownPotion extends Projectile {
 | 
						|
 
 | 
						|
     /**
 | 
						|
      * Set the ItemStack for this thrown potion.
 | 
						|
-     * <p>
 | 
						|
-     * The ItemStack must be of type {@link org.bukkit.Material#SPLASH_POTION}
 | 
						|
-     * or {@link org.bukkit.Material#LINGERING_POTION}, otherwise an exception
 | 
						|
-     * is thrown.
 | 
						|
      *
 | 
						|
      * @param item New ItemStack
 | 
						|
      */
 | 
						|
     public void setItem(@NotNull ItemStack item);
 | 
						|
+
 | 
						|
+    // Paper start - Projectile API
 | 
						|
+    /**
 | 
						|
+     * Gets a copy of the PotionMeta for this thrown potion.
 | 
						|
+     * This includes what effects will be applied by this potion.
 | 
						|
+     *
 | 
						|
+     * @return potion meta
 | 
						|
+     */
 | 
						|
+    @NotNull
 | 
						|
+    org.bukkit.inventory.meta.PotionMeta getPotionMeta();
 | 
						|
+
 | 
						|
+    /**
 | 
						|
+     * Sets the PotionMeta of this thrown potion.
 | 
						|
+     * This will modify the effects applied by this potion.
 | 
						|
+     * <p>
 | 
						|
+     * Note that the type of {@link #getItem()} is irrelevant
 | 
						|
+     *
 | 
						|
+     * @param meta potion meta
 | 
						|
+     */
 | 
						|
+    void setPotionMeta(@NotNull org.bukkit.inventory.meta.PotionMeta meta);
 | 
						|
+    // Paper end
 | 
						|
 }
 |