Fix poor action helpers API name (#6518)
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: Madeline Miller <mnmiller1@me.com>
|
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
|
Subject: [PATCH] Add helpers for left/right hand to Action
|
||||||
|
|
||||||
|
|
||||||
@ -17,20 +17,20 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
+ PHYSICAL;
|
+ 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;
|
+ 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;
|
+ return this == RIGHT_CLICK_AIR || this == RIGHT_CLICK_BLOCK;
|
||||||
+ }
|
+ }
|
||||||
+ // Paper end
|
+ // Paper end
|
||||||
|
|||||||
Reference in New Issue
Block a user