Paper/patches/api/0340-Goat-ram-API.patch
Josh Roy c1d14dc076 all api patches done*
*still waiting for leaf to port datafixer to 1.18 so i can do entity serialization
2021-11-30 19:26:33 +01:00

24 lines
859 B
Diff

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Seggan <segganew@gmail.com>
Date: Thu, 5 Aug 2021 13:10:31 -0400
Subject: [PATCH] Goat ram API
diff --git a/src/main/java/org/bukkit/entity/Goat.java b/src/main/java/org/bukkit/entity/Goat.java
index 90e9028b5ee7fcf9488d37090875b7163bdcd1d0..01827c4118df36fe1b77115f181fb4d225c3c866 100644
--- a/src/main/java/org/bukkit/entity/Goat.java
+++ b/src/main/java/org/bukkit/entity/Goat.java
@@ -24,4 +24,12 @@ public interface Goat extends Animals {
* @param screaming screaming status
*/
void setScreaming(boolean screaming);
+
+ // Paper start - Goat ram API
+ /**
+ * Makes the goat ram at the specified entity
+ * @param entity the entity to ram at
+ */
+ void ram(@org.jetbrains.annotations.NotNull LivingEntity entity);
+ // Paper end
}