Add EquipmentSlot convenience methods (#8477)
This commit is contained in:
@@ -23,7 +23,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||
+ * @throws IllegalArgumentException if invalid hand is passed
|
||||
+ */
|
||||
+ default void swingHand(@NotNull org.bukkit.inventory.EquipmentSlot hand) {
|
||||
+ com.google.common.base.Preconditions.checkArgument(hand == org.bukkit.inventory.EquipmentSlot.HAND || hand == org.bukkit.inventory.EquipmentSlot.OFF_HAND, String.format("Expected a valid hand, got \"%s\" instead!", hand));
|
||||
+ com.google.common.base.Preconditions.checkArgument(hand != null && hand.isHand(), String.format("Expected a valid hand, got \"%s\" instead!", hand));
|
||||
+ if (hand == org.bukkit.inventory.EquipmentSlot.HAND) {
|
||||
+ this.swingMainHand();
|
||||
+ } else {
|
||||
|
||||
Reference in New Issue
Block a user