mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-22 17:27:38 +00:00
Fixed a bug where some mobs were incorrectly determined to be tagged on the Sponge platform
This commit is contained in:
parent
222ba33aa4
commit
3b176038bf
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user