diff options
author | Seggan <[email protected]> | 2021-11-09 03:48:22 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2021-11-09 00:48:22 -0800 |
commit | 3f17694803e286bcc1818fdb47122fe46e3e4c29 (patch) | |
tree | 0a0dbb41e81ab0c2ced87763225a1cd15ae1ba9b /patches/api/0345-Goat-ram-API.patch | |
parent | a923e332ee20bbbe6319c361496c9ea5728b4d08 (diff) | |
download | Paper-3f17694803e286bcc1818fdb47122fe46e3e4c29.tar.gz Paper-3f17694803e286bcc1818fdb47122fe46e3e4c29.zip |
Goat ram API (#6336)
Diffstat (limited to 'patches/api/0345-Goat-ram-API.patch')
-rw-r--r-- | patches/api/0345-Goat-ram-API.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/patches/api/0345-Goat-ram-API.patch b/patches/api/0345-Goat-ram-API.patch new file mode 100644 index 0000000000..69694887ac --- /dev/null +++ b/patches/api/0345-Goat-ram-API.patch @@ -0,0 +1,23 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Seggan <[email protected]> +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 + } |