mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Revert this particular change since it wasn't quite ready yet
This commit is contained in:
parent
e954d091b9
commit
70ec77b1e3
1 changed files with 2 additions and 7 deletions
|
@ -255,14 +255,9 @@ public class LivingEntity extends Entity {
|
|||
if (javaAttribute.getType() instanceof AttributeType.Builtin type) {
|
||||
switch (type) {
|
||||
case GENERIC_MAX_HEALTH -> {
|
||||
float maxHealth = (float) AttributeUtils.calculateValue(javaAttribute);
|
||||
if (this.maxHealth != maxHealth) {
|
||||
// Helps prnt respawn bugs where the player respawns twice
|
||||
// Because we re-sent the health attribute as 0
|
||||
this.maxHealth = maxHealth;
|
||||
this.maxHealth = (float) AttributeUtils.calculateValue(javaAttribute);
|
||||
newAttributes.add(createHealthAttribute());
|
||||
}
|
||||
}
|
||||
case GENERIC_ATTACK_DAMAGE -> newAttributes.add(calculateAttribute(javaAttribute, GeyserAttributeType.ATTACK_DAMAGE));
|
||||
case GENERIC_FLYING_SPEED -> newAttributes.add(calculateAttribute(javaAttribute, GeyserAttributeType.FLYING_SPEED));
|
||||
case GENERIC_MOVEMENT_SPEED -> newAttributes.add(calculateAttribute(javaAttribute, GeyserAttributeType.MOVEMENT_SPEED));
|
||||
|
|
Loading…
Reference in a new issue