Add example issue to Inventory#getBedrockId

This commit is contained in:
Camotoy 2022-08-29 12:30:16 -04:00
parent 94d56f04bb
commit d9db035d95
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
1 changed files with 1 additions and 0 deletions

View File

@ -106,6 +106,7 @@ public abstract class Inventory {
// This is to prevent conflicts with special bedrock inventory IDs.
// The vanilla java server only sends an ID between 1 and 100 when opening an inventory,
// so this is rarely needed. (certain plugins)
// Example: https://github.com/GeyserMC/Geyser/issues/3254
public int getBedrockId() {
return javaId <= 100 ? javaId : (javaId % 100) + 1;
}