3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-07 00:22:51 +02:00

Fixed a bug where some mobs were incorrectly determined to be tagged on the Sponge platform

Dieser Commit ist enthalten in:
Wyatt Childers 2016-03-05 15:59:22 -05:00
Ursprung 222ba33aa4
Commit 3b176038bf

Datei anzeigen

@ -132,7 +132,7 @@ public class SpongeEntityType implements EntityType {
@Override
public boolean isTagged() {
return entity.get(Keys.DISPLAY_NAME).orElse(Text.EMPTY).isEmpty();
return !entity.get(Keys.DISPLAY_NAME).orElse(Text.EMPTY).isEmpty();
}
@Override