Fix a harmful javadoc typo (#1372)

Original: kill if health is **> (more)** or equal to 0 and is not yet dead
This commit is contained in:
Ilya @ Gloryx 2022-08-29 13:43:36 +03:00 committed by GitHub
parent 83011eb903
commit 978a398f64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -402,7 +402,7 @@ public class LivingEntity extends Entity implements EquipmentHandler {
}
/**
* Changes the entity health, kill it if {@code health} is >= 0 and is not dead yet.
* Changes the entity health, kill it if {@code health} is <= 0 and is not dead yet.
*
* @param health the new entity health
*/