mirror of
https://github.com/EngineHub/WorldEdit.git
synced 2025-01-30 12:51:17 +08: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 boolean isTamed() {
|
||||
|
||||
@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