Update launchProjectile API (#11300)
This commit is contained in:
parent
593faf4fc3
commit
1ed64f8270
453 changed files with 280 additions and 136 deletions
25
patches/api/0479-Fix-PickupStatus-getting-reset.patch
Normal file
25
patches/api/0479-Fix-PickupStatus-getting-reset.patch
Normal file
|
@ -0,0 +1,25 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Tamion <70228790+notTamion@users.noreply.github.com>
|
||||
Date: Tue, 23 Jul 2024 18:37:12 +0200
|
||||
Subject: [PATCH] Fix PickupStatus getting reset
|
||||
|
||||
|
||||
diff --git a/src/main/java/org/bukkit/entity/AbstractArrow.java b/src/main/java/org/bukkit/entity/AbstractArrow.java
|
||||
index 9bf4b86e730f3d066f6ebfd4e516caf78145479e..c6466b22f37beae2ca78d90feaceacd9fb124267 100644
|
||||
--- a/src/main/java/org/bukkit/entity/AbstractArrow.java
|
||||
+++ b/src/main/java/org/bukkit/entity/AbstractArrow.java
|
||||
@@ -272,4 +272,14 @@ public interface AbstractArrow extends Projectile {
|
||||
*/
|
||||
void setHitSound(@NotNull org.bukkit.Sound sound);
|
||||
// Paper end - more projectile API
|
||||
+
|
||||
+ // Paper start - Fix PickupStatus getting reset
|
||||
+ /**
|
||||
+ * Set the shooter of this projectile.
|
||||
+ *
|
||||
+ * @param source the {@link org.bukkit.projectiles.ProjectileSource} that shot this projectile
|
||||
+ * @param resetPickupStatus whether the {@link org.bukkit.entity.AbstractArrow.PickupStatus} should be reset
|
||||
+ */
|
||||
+ void setShooter(@Nullable org.bukkit.projectiles.ProjectileSource source, boolean resetPickupStatus);
|
||||
+ // Paper end - Fix PickupStatus getting reset
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue