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
Is your feature request related to a problem? Please describe. when I use a minion plugin ( litminion ) and I drop 128x stone but it detects 64x
Describe the solution you'd like Maybe u can release API to determine the item stack amount so the developer can add support for server booster
The text was updated successfully, but these errors were encountered:
Definitely a good idea. Anyway you can use NBT API and check for the special NBT tag which contains this information.
final NBTItem nbtItem = new NBTItem(itemStack); if(!nbtItem.hasNBTData()) return; if(!nbtItem.hasKey("SBAmount")) return; final int amount = nbtItem.getInteger("SBAmount");
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
when I use a minion plugin ( litminion ) and I drop 128x stone but it detects 64x
Describe the solution you'd like
Maybe u can release API to determine the item stack amount so the developer can add support for server booster
The text was updated successfully, but these errors were encountered: