Skip to content

Commit

Permalink
Fix SpongeUserData returning the wrong identifier (#3625)
Browse files Browse the repository at this point in the history
  • Loading branch information
TBlueF committed Feb 12, 2022
1 parent 800c32e commit 9e2ce38
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,7 @@ public void setInvulnerable(final boolean invulnerable) {

@Override
public String identifier() {
return this.name();
return this.uniqueId().toString();
}

}

0 comments on commit 9e2ce38

Please sign in to comment.