From 214a725c180b4e7eba0cb37e0f7d0c3f81c2826f Mon Sep 17 00:00:00 2001 From: DerFrZocker Date: Wed, 5 Jun 2024 20:48:31 +0200 Subject: [PATCH] Add missing extends Entity to EntityType entity class --- src/main/java/org/bukkit/entity/EntityType.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/bukkit/entity/EntityType.java b/src/main/java/org/bukkit/entity/EntityType.java index 2c4b1417..5745f0c9 100644 --- a/src/main/java/org/bukkit/entity/EntityType.java +++ b/src/main/java/org/bukkit/entity/EntityType.java @@ -38,7 +38,7 @@ public abstract class EntityType implements OldEnum, Keyed, Translat * * @param the generic data type of the entity that represents the entity type. */ - public abstract static class Typed extends EntityType { + public abstract static class Typed extends EntityType { /** * Gets the Entity class of this EntityType @@ -373,7 +373,7 @@ public abstract class EntityType implements OldEnum, Keyed, Translat public abstract boolean isAlive(); @Nullable - public abstract Class getEntityClass(); + public abstract Class getEntityClass(); /** * Gets if this EntityType is enabled by feature in a world.