mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-31 22:22:49 +00:00
#841: Remove incorrect ClickType.CONTROL_DROP from ClickType#isShiftClick
This commit is contained in:
parent
bceda6abd9
commit
9153f77e75
1 changed files with 1 additions and 1 deletions
|
@ -114,6 +114,6 @@ public enum ClickType {
|
|||
* @return true if the action uses Shift.
|
||||
*/
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue