Change Additional Hearts default to 0 instead of 1 (#2517)

This commit is contained in:
GreatWyrm 2024-12-10 14:38:45 -08:00 committed by GitHub
parent f4da32d3fb
commit 4e93f469dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -211,7 +211,7 @@ public sealed class MetadataDef {
}
public static final class Player extends LivingEntity {
public static final Entry<Float> ADDITIONAL_HEARTS = index(0, Metadata::Float, 1f);
public static final Entry<Float> ADDITIONAL_HEARTS = index(0, Metadata::Float, 0f);
public static final Entry<Integer> SCORE = index(1, Metadata::VarInt, 0);
public static final Entry<Byte> DISPLAYED_SKIN_PARTS_FLAGS = index(2, Metadata::Byte, (byte) 0);
public static final Entry<Boolean> IS_CAPE_ENABLED = bitMask(2, (byte) 0x01, false);