mirror of
https://github.com/PaperMC/Paper.git
synced 2025-07-29 11:12:04 -07:00
API 'done'
This commit is contained in:
77
patches/api/Bucketable-API.patch
Normal file
77
patches/api/Bucketable-API.patch
Normal file
@@ -0,0 +1,77 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
|
||||
Date: Sun, 26 Dec 2021 14:03:11 -0500
|
||||
Subject: [PATCH] Bucketable API
|
||||
|
||||
|
||||
diff --git a/src/main/java/io/papermc/paper/entity/Bucketable.java b/src/main/java/io/papermc/paper/entity/Bucketable.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/entity/Bucketable.java
|
||||
@@ -0,0 +0,0 @@
|
||||
+package io.papermc.paper.entity;
|
||||
+
|
||||
+import org.bukkit.Sound;
|
||||
+import org.bukkit.entity.Entity;
|
||||
+import org.bukkit.inventory.ItemStack;
|
||||
+import org.jetbrains.annotations.NotNull;
|
||||
+
|
||||
+/**
|
||||
+ * Represents an entity that can be bucketed.
|
||||
+ */
|
||||
+public interface Bucketable extends Entity {
|
||||
+
|
||||
+ /**
|
||||
+ * Gets if this entity originated from a bucket.
|
||||
+ *
|
||||
+ * @return originated from bucket
|
||||
+ */
|
||||
+ boolean isFromBucket();
|
||||
+
|
||||
+ /**
|
||||
+ * Sets if this entity originated from a bucket.
|
||||
+ *
|
||||
+ * @param fromBucket is from a bucket
|
||||
+ */
|
||||
+ void setFromBucket(boolean fromBucket);
|
||||
+
|
||||
+ /**
|
||||
+ * Gets the base itemstack of this entity in a bucket form.
|
||||
+ *
|
||||
+ * @return bucket form
|
||||
+ */
|
||||
+ @NotNull
|
||||
+ ItemStack getBaseBucketItem();
|
||||
+
|
||||
+ /**
|
||||
+ * Gets the sound that is played when this entity
|
||||
+ * is picked up in a bucket.
|
||||
+ * @return bucket pickup sound
|
||||
+ */
|
||||
+ @NotNull
|
||||
+ Sound getPickupSound();
|
||||
+}
|
||||
diff --git a/src/main/java/org/bukkit/entity/Axolotl.java b/src/main/java/org/bukkit/entity/Axolotl.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/org/bukkit/entity/Axolotl.java
|
||||
+++ b/src/main/java/org/bukkit/entity/Axolotl.java
|
||||
@@ -0,0 +0,0 @@ import org.jetbrains.annotations.NotNull;
|
||||
/**
|
||||
* An Axolotl.
|
||||
*/
|
||||
-public interface Axolotl extends Animals {
|
||||
+public interface Axolotl extends Animals, io.papermc.paper.entity.Bucketable { // Paper - Bucketable API
|
||||
|
||||
/**
|
||||
* Gets if this axolotl is playing dead.
|
||||
diff --git a/src/main/java/org/bukkit/entity/Fish.java b/src/main/java/org/bukkit/entity/Fish.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/org/bukkit/entity/Fish.java
|
||||
+++ b/src/main/java/org/bukkit/entity/Fish.java
|
||||
@@ -0,0 +0,0 @@ package org.bukkit.entity;
|
||||
/**
|
||||
* Represents a fish entity.
|
||||
*/
|
||||
-public interface Fish extends WaterMob { }
|
||||
+public interface Fish extends WaterMob, io.papermc.paper.entity.Bucketable { } // Paper - Bucketable API
|
Reference in New Issue
Block a user