diff --git a/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/cmdutils/TabCompleteHelper.java b/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/cmdutils/TabCompleteHelper.java index 760894a..70aebb0 100644 --- a/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/cmdutils/TabCompleteHelper.java +++ b/src/main/java/com/gmail/artemis/the/gr8/playerstats/commands/cmdutils/TabCompleteHelper.java @@ -46,7 +46,6 @@ public class TabCompleteHelper { entityKilledSuggestions = Arrays.stream(EntityType.values()) .parallel() .filter(EntityType::isAlive) - .filter(entityType -> entityType != EntityType.ARMOR_STAND) .map(EntityType::toString) .map(String::toLowerCase) .collect(Collectors.toList());