mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2024-12-28 11:04:21 +00:00
Make OfflinePlayer#setName protected for CMI Importer (#4805)
This commit is contained in:
parent
cbb012853c
commit
bc2da98703
1 changed files with 1 additions and 1 deletions
|
@ -1341,7 +1341,7 @@ public class OfflinePlayer implements Player {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
void setName(final String name) {
|
protected void setName(final String name) {
|
||||||
this.name = base.getName();
|
this.name = base.getName();
|
||||||
if (this.name == null) {
|
if (this.name == null) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
|
|
Loading…
Reference in a new issue