mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-16 06:30:46 +01:00
Fix poor action helpers API name (#6518)
This commit is contained in:
parent
6f94f00f7b
commit
e0125b21b7
1 changed files with 7 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue