mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
LivingEntity: Default health is 1.0
As per https://wiki.vg/Entity_metadata#Living_Entity
This commit is contained in:
parent
fe59633cd6
commit
888297dd4b
1 changed files with 2 additions and 2 deletions
|
|
@ -49,7 +49,7 @@ namespace MinecraftClient.Mapping
|
|||
this.ID = ID;
|
||||
this.Type = type;
|
||||
this.Location = location;
|
||||
this.Health = 0;
|
||||
this.Health = 1.0;
|
||||
}
|
||||
/// <summary>
|
||||
/// Create a new entity based on Entity ID, Entity Type, location, name and UUID
|
||||
|
|
@ -66,7 +66,7 @@ namespace MinecraftClient.Mapping
|
|||
this.Location = location;
|
||||
this.UUID = uuid;
|
||||
this.Name = name;
|
||||
this.Health = 0;
|
||||
this.Health = 1.0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue