Skip to content

Commit

Permalink
Fixed a bug where some mobs were incorrectly determined to be tagged …
Browse files Browse the repository at this point in the history
…on the Sponge platform
  • Loading branch information
DarkArc committed Mar 5, 2016
1 parent 222ba33 commit 3b17603
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -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
Expand Down

0 comments on commit 3b17603

Please sign in to comment.