We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check it
The text was updated successfully, but these errors were encountered:
I know this is an old issue, but the problem still exists.
Sorry, something went wrong.
Found the reason for the bug. You're using:
if (!(block instanceof InventoryHolder)) return false;
instead of:
if (!(block.getState() instanceof InventoryHolder)) return false;
https://github.com/Zren/HawkEye/blob/master/src/main/java/uk/co/oliwali/HawkEye/entry/ContainerEntry.java#L40
Fix Issue oliverwoodings#105 where chest transactions's were not roll…
6a94905
…ing back. There are no implementation of a Block/InventoryHolder mix. You need to call block.getState() in order to get an object that impements it.
I've also noticed that any item with a data/damage value will not revert. Which probably means a custom inv.addItem() / .remItem().
No branches or pull requests
Check it
The text was updated successfully, but these errors were encountered: