diff --git a/patches/api/Add-helpers-for-left-right-hand-to-Action.patch b/patches/api/Add-helpers-for-left-right-hand-to-Action.patch
index 552fa097dd..561d5894e1 100644
--- a/patches/api/Add-helpers-for-left-right-hand-to-Action.patch
+++ b/patches/api/Add-helpers-for-left-right-hand-to-Action.patch
@@ -1,6 +1,6 @@
 From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
 From: Madeline Miller <mnmiller1@me.com>
-Date: Sun, 29 Aug 2021 16:22:46 +1000
+Date: Sun, 29 Aug 2021 17:00:56 +1000
 Subject: [PATCH] Add helpers for left/right hand to Action
 
 
@@ -17,20 +17,20 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
 +    PHYSICAL;
 +
 +    /**
-+     * Gets whether this action is a result of a left-hand click.
++     * Gets whether this action is a result of a left click.
 +     *
-+     * @return Whether it's a left-hand click
++     * @return Whether it's a left click
 +     */
-+    public boolean isLeftHand() {
++    public boolean isLeftClick() {
 +        return this == LEFT_CLICK_AIR || this == LEFT_CLICK_BLOCK;
 +    }
 +
 +    /**
-+     * Gets whether this action is a result of a right-hand click.
++     * Gets whether this action is a result of a right click.
 +     *
-+     * @return Whether it's a right-hand click
++     * @return Whether it's a right click
 +     */
-+    public boolean isRightHand() {
++    public boolean isRightClick() {
 +        return this == RIGHT_CLICK_AIR || this == RIGHT_CLICK_BLOCK;
 +    }
 +    // Paper end