geforkt von Mirrors/Paper
928bcc8d3a
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 09943450 Update SnakeYAML version 5515734f SPIGOT-7162: Incorrect description for Entity#getVehicle javadoc 6f82b381 PR-788: Add getHand() to all relevant events CraftBukkit Changes: aaf484f6f SPIGOT-7163: CraftMerchantRecipe doesn't copy demand and specialPrice from BukkitMerchantRecipe 5329dd6fd PR-1107: Add getHand() to all relevant events 93061706e SPIGOT-7045: Ocelots never spawn with babies with spawn reason OCELOT_BABY
32 Zeilen
966 B
Diff
32 Zeilen
966 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: William Blake Galbreath <blake.galbreath@gmail.com>
|
|
Date: Thu, 14 Oct 2021 12:36:46 -0500
|
|
Subject: [PATCH] Left handed API
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Mob.java b/src/main/java/org/bukkit/entity/Mob.java
|
|
index 11b6d1aba7d1f6ae1f3c822193486f5a1478e105..d53de07b40d9cd63a9553d4b0ad442d526530b92 100644
|
|
--- a/src/main/java/org/bukkit/entity/Mob.java
|
|
+++ b/src/main/java/org/bukkit/entity/Mob.java
|
|
@@ -162,4 +162,20 @@ public interface Mob extends LivingEntity, Lootable {
|
|
*/
|
|
@Nullable
|
|
public Sound getAmbientSound();
|
|
+
|
|
+ // Paper start
|
|
+ /**
|
|
+ * Check if Mob is left-handed
|
|
+ *
|
|
+ * @return True if left-handed
|
|
+ */
|
|
+ public boolean isLeftHanded();
|
|
+
|
|
+ /**
|
|
+ * Set if Mob is left-handed
|
|
+ *
|
|
+ * @param leftHanded True if left-handed
|
|
+ */
|
|
+ public void setLeftHanded(boolean leftHanded);
|
|
+ // Paper end
|
|
}
|