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

This commit is contained in:
Wyatt Childers 2016-03-05 15:59:22 -05:00
parent 222ba33aa4
commit 3b176038bf

View File

@ -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