diff options
author | Jake <[email protected]> | 2024-12-19 23:14:21 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2024-12-19 23:14:21 +0100 |
commit | 413751ae2daf6e981363c76c81f27adcf6756a54 (patch) | |
tree | ef394d1496b05b24010efa3fa172ad05e476fbb4 /paper-api | |
parent | 25a7793b9c3c07da9307d0d36af4d9bd15fde302 (diff) | |
download | Paper-413751ae2daf6e981363c76c81f27adcf6756a54.tar.gz Paper-413751ae2daf6e981363c76c81f27adcf6756a54.zip |
Update Mob.java (#11757)
Diffstat (limited to 'paper-api')
-rw-r--r-- | paper-api/src/main/java/org/bukkit/entity/Mob.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/paper-api/src/main/java/org/bukkit/entity/Mob.java b/paper-api/src/main/java/org/bukkit/entity/Mob.java index 9a10262a95..ca773a807e 100644 --- a/paper-api/src/main/java/org/bukkit/entity/Mob.java +++ b/paper-api/src/main/java/org/bukkit/entity/Mob.java @@ -191,7 +191,7 @@ public interface Mob extends LivingEntity, Lootable, io.papermc.paper.entity.Lea * set by {@link #setAggressive(boolean)}. {@link Panda}'s are always * aggressive if their combined {@link Panda.Gene} is {@link Panda.Gene#AGGRESSIVE}. * - * @return wether the mob is aggressive or not + * @return whether the mob is aggressive or not */ boolean isAggressive(); @@ -199,7 +199,7 @@ public interface Mob extends LivingEntity, Lootable, io.papermc.paper.entity.Lea * Some mobs will raise their arm(s) when aggressive, * see {@link #isAggressive()} for full list. * - * @param aggressive wether the mob should be aggressive or not + * @param aggressive whether the mob should be aggressive or not * @see #isAggressive() */ void setAggressive(boolean aggressive); |