From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Seggan 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 }