Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-12-26 16:12:46 +01:00
Fix mistake on Enderman carried block updater
Dieser Commit ist enthalten in:
Ursprung
2f56f02477
Commit
b35667d187
@ -48,7 +48,7 @@ public class EndermanEntity extends MonsterEntity {
|
|||||||
public void setCarriedBlock(EntityMetadata<OptionalInt, OptionalIntMetadataType> entityMetadata) {
|
public void setCarriedBlock(EntityMetadata<OptionalInt, OptionalIntMetadataType> entityMetadata) {
|
||||||
int bedrockBlockId;
|
int bedrockBlockId;
|
||||||
if (entityMetadata.getValue().isPresent()) {
|
if (entityMetadata.getValue().isPresent()) {
|
||||||
bedrockBlockId = entityMetadata.getValue().getAsInt();
|
bedrockBlockId = session.getBlockMappings().getBedrockBlockId(entityMetadata.getValue().getAsInt());
|
||||||
} else {
|
} else {
|
||||||
bedrockBlockId = session.getBlockMappings().getBedrockAirId();
|
bedrockBlockId = session.getBlockMappings().getBedrockAirId();
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren