diff --git a/plugin/src/main/java/com/denizenscript/denizen/objects/EntityTag.java b/plugin/src/main/java/com/denizenscript/denizen/objects/EntityTag.java index 6ecf583d39..93ba0445dd 100644 --- a/plugin/src/main/java/com/denizenscript/denizen/objects/EntityTag.java +++ b/plugin/src/main/java/com/denizenscript/denizen/objects/EntityTag.java @@ -2457,7 +2457,7 @@ else if (object.getBukkitEntity() instanceof Hanging) { // Not to be confused with the idea of being alive - see <@link tag EntityTag.is_spawned>. // This tag is valid for entity type objects. // --> - registerSpawnedOnlyTag("is_living", (attribute, object) -> { + registerTag("is_living", (attribute, object) -> { if (object.entity == null && object.entity_type != null) { return new ElementTag(object.entity_type.getBukkitEntityType().isAlive()); } @@ -2638,7 +2638,7 @@ else if (object.getBukkitEntity() instanceof Hanging) { // @description // Returns the entity's full description, including all properties. // --> - registerSpawnedOnlyTag("describe", (attribute, object) -> { + registerTag("describe", (attribute, object) -> { String escript = object.getEntityScript(); return new ElementTag("e@" + (escript != null && escript.length() > 0 ? escript : object.getEntityType().getLowercaseName()) + PropertyParser.getPropertiesString(object));