Added armor_stand back on list with filtered entity-suggestions

This commit is contained in:
Artemis-the-gr8 2022-07-11 15:35:11 +02:00
parent 776862d396
commit 80a5f17079
1 changed files with 0 additions and 1 deletions

View File

@ -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());