Skip to content

Commit

Permalink
fix find.living_entities tag
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Oct 2, 2019
1 parent af715ff commit 7b99ecf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2102,7 +2102,7 @@ public int compare(EntityTag ent1, EntityTag ent2) {
// @description
// Returns a list of living entities within a radius.
// -->
else if (attribute.startsWith("living_entities")) {
else if (attribute.startsWith("living_entities", 2)) {
ArrayList<EntityTag> found = new ArrayList<>();
attribute.fulfill(2);
for (Entity entity : new WorldTag(object.getWorld()).getEntitiesForTag()) {
Expand Down

0 comments on commit 7b99ecf

Please sign in to comment.