This version fixes issues with the clear button not being translatable and also command usage showing up twice.
In versions 1.10 to 1.12 recipes that use wooden variants and possibly other materials will cause a dupe bug of infinite crafting without using up the resources. For some reason the check to see if the ingredient is inside the storage (wood in this case) is passing, but it can't find it when it comes time to remove it.
When someone attempted to create a double chest using an ACC my plugin prevents that action. A bug that showed up caused a ACC entry to still be creating, effectively adding the ACC to the config file but the chest not physically being there. This would hypothetically allow you to create more ACCs by placing down a regular chest in the exact location of the ghost log. It was a simple mistake of not returning part of a code earlier then it should have been. That is now resolved and should also fix additional issues that showed up with 1.12 and lower.
In earlier versions of Minecraft it didn't matter which direction a chest was facing, it would create a double chest no matter what, even shift being pressed didn't stop it. So I figured to fix the issue causing the error I just didn't need to check for directional anymore, I did however need to check for neighbors which is a lot easier and doesn't rely on deprecated code.
I updated the plugin to work with version 1.16.X. I apologize for not keeping up to date with the last few versions. It seems that the crafting bench isn't seeing any new updates lately so I think I should just implement a fail-safe so that if a future update (lets say v1_17_R1) doesn't exist or have support it tries to use the latest version and hope it works, if it doesn't then an actual update would be required.