diff --git a/Basic_Crop_Pack.zip b/Basic_Crop_Pack.zip deleted file mode 100644 index 7de0282..0000000 Binary files a/Basic_Crop_Pack.zip and /dev/null differ diff --git a/CustomCrops_3.4_Basic_Pack.zip b/CustomCrops_3.4_Basic_Pack.zip new file mode 100644 index 0000000..a257ca8 Binary files /dev/null and b/CustomCrops_3.4_Basic_Pack.zip differ diff --git a/plugin/src/main/java/net/momirealms/customcrops/mechanic/item/ItemManagerImpl.java b/plugin/src/main/java/net/momirealms/customcrops/mechanic/item/ItemManagerImpl.java index c0990bb..04cb8b8 100644 --- a/plugin/src/main/java/net/momirealms/customcrops/mechanic/item/ItemManagerImpl.java +++ b/plugin/src/main/java/net/momirealms/customcrops/mechanic/item/ItemManagerImpl.java @@ -527,11 +527,6 @@ public class ItemManagerImpl implements ItemManager { return FunctionResult.PASS; } Player player = furnitureWrapper.getPlayer(); - // prevent players from rotating the crops - if (player.isSneaking()) { - return FunctionResult.CANCEL_EVENT_AND_RETURN; - } - Location cropLocation = furnitureWrapper.getLocation(); ItemStack itemInHand = furnitureWrapper.getItemInHand(); String itemID = getItemID(itemInHand); @@ -1689,11 +1684,6 @@ public class ItemManagerImpl implements ItemManager { } Player player = interactWrapper.getPlayer(); - // prevent players from rotating the crops - if (player.isSneaking() && interactWrapper instanceof InteractFurnitureWrapper) { - return FunctionResult.CANCEL_EVENT_AND_RETURN; - } - Location cropLocation = interactWrapper.getLocation().toBlockLocation(); ItemStack itemInHand = interactWrapper.getItemInHand(); State cropState = new State(player, itemInHand, cropLocation);