mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-26 15:16:45 +01:00
Fix for offhandedness
This commit is contained in:
parent
aa894b8ad9
commit
dffbaf89a3
@ -1741,7 +1741,13 @@ import java.util.regex.Pattern;
|
|||||||
if (area == null) {
|
if (area == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Material type = player.getInventory().getItemInMainHand().getType();
|
ItemStack hand = player.getInventory().getItemInMainHand();
|
||||||
|
ItemStack offHand = player.getInventory().getItemInOffHand();
|
||||||
|
Material type = (hand == null) ? Material.AIR : hand.getType();
|
||||||
|
Material offType = (offHand == null) ? Material.AIR : offHand.getType();
|
||||||
|
if (type == Material.AIR) {
|
||||||
|
type = offType;
|
||||||
|
}
|
||||||
if (type.toString().toLowerCase().endsWith("egg")) {
|
if (type.toString().toLowerCase().endsWith("egg")) {
|
||||||
Block block = player.getTargetBlockExact(5, FluidCollisionMode.SOURCE_ONLY);
|
Block block = player.getTargetBlockExact(5, FluidCollisionMode.SOURCE_ONLY);
|
||||||
if (block != null && block.getType() != Material.AIR) {
|
if (block != null && block.getType() != Material.AIR) {
|
||||||
|
Loading…
Reference in New Issue
Block a user