Fix mistake on Enderman carried block updater

This commit is contained in:
Konicai 2022-11-22 19:02:01 -05:00
parent 2f56f02477
commit b35667d187
No known key found for this signature in database
GPG Key ID: 710D09287708C823
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ public class EndermanEntity extends MonsterEntity {
public void setCarriedBlock(EntityMetadata<OptionalInt, OptionalIntMetadataType> entityMetadata) {
int bedrockBlockId;
if (entityMetadata.getValue().isPresent()) {
bedrockBlockId = entityMetadata.getValue().getAsInt();
bedrockBlockId = session.getBlockMappings().getBedrockBlockId(entityMetadata.getValue().getAsInt());
} else {
bedrockBlockId = session.getBlockMappings().getBedrockAirId();
}