mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Fix IronGolem cracked texture and sound (#3103)
* Update mappings submodule * Set IronGolem maxHealth to 100 by default Fixes cracked texture on vanilla servers * Add detail to comment
This commit is contained in:
parent
13e8b59ed0
commit
f2f894b1d1
2 changed files with 4 additions and 1 deletions
|
@ -45,6 +45,9 @@ public class IronGolemEntity extends GolemEntity {
|
|||
setFlag(EntityFlag.BRIBED, true);
|
||||
// Required, or else the overlay is black
|
||||
dirtyMetadata.put(EntityData.COLOR_2, (byte) 0);
|
||||
// Default max health. Ensures correct cracked texture is used
|
||||
// Bug reproducible in 1.19.0 JE vanilla/fabric when spawning a new iron golem
|
||||
maxHealth = 100f;
|
||||
}
|
||||
|
||||
@Nonnull
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 05009c86fb06ecab0ea4691ec96fc24fdc6c1ee5
|
||||
Subproject commit 27e9c97df1e9a2f9d1f05359a29181e6ee0810d2
|
Loading…
Reference in a new issue