Return null if no definition found

This commit is contained in:
Camotoy 2022-12-23 20:24:53 -05:00
parent e295f910c4
commit 7f38496d61
No known key found for this signature in database
GPG key ID: 7EEFB66FE798081F

View file

@ -80,7 +80,7 @@ public class BlockMappings implements DefinitionRegistry<GeyserBedrockBlock> {
@Override @Override
public GeyserBedrockBlock getDefinition(int bedrockId) { public GeyserBedrockBlock getDefinition(int bedrockId) {
if (bedrockId < 0 || bedrockId >= this.bedrockRuntimeMap.length) { if (bedrockId < 0 || bedrockId >= this.bedrockRuntimeMap.length) {
return bedrockAir; return null;
} }
return bedrockRuntimeMap[bedrockId]; return bedrockRuntimeMap[bedrockId];
} }