mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-09 16:42:03 -07:00
#841: Remove incorrect ClickType.CONTROL_DROP from ClickType#isShiftClick
By: RyGuy <git@ryguy.me>
This commit is contained in:
@@ -114,6 +114,6 @@ public enum ClickType {
|
|||||||
* @return true if the action uses Shift.
|
* @return true if the action uses Shift.
|
||||||
*/
|
*/
|
||||||
public boolean isShiftClick() {
|
public boolean isShiftClick() {
|
||||||
return (this == ClickType.SHIFT_LEFT) || (this == ClickType.SHIFT_RIGHT) || (this == ClickType.CONTROL_DROP);
|
return (this == ClickType.SHIFT_LEFT) || (this == ClickType.SHIFT_RIGHT);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user