mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-01 20:50:41 +01:00
5730a94208
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: 2b4582fb SPIGOT-5916: getLastColors does not work with the rgb colors CraftBukkit Changes: f7707086d SPIGOT-7299: Fix indirect/anvil damage events and minor improvements
31 lines
966 B
Diff
31 lines
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
|
|
}
|