mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-01-09 08:28:30 +00:00
Fixed plot owner UUIDs getting unnecessarily randomized. (#2233)
This commit is contained in:
parent
15ea0f3210
commit
8ba661aa35
1 changed files with 2 additions and 2 deletions
|
@ -116,10 +116,10 @@ public class ClassicPlotMeConnector extends APlotMeConnector {
|
|||
PlotSquared.log(
|
||||
"&cCould not identify owner for plot: " + id + " -> '" + name + "'");
|
||||
missing++;
|
||||
owner = UUID.nameUUIDFromBytes(
|
||||
("OfflinePlayer:" + name.toLowerCase()).getBytes(Charsets.UTF_8));
|
||||
continue;
|
||||
}
|
||||
owner = UUID.nameUUIDFromBytes(
|
||||
("OfflinePlayer:" + name.toLowerCase()).getBytes(Charsets.UTF_8));
|
||||
}
|
||||
} else {
|
||||
UUIDHandler.add(new StringWrapper(name), owner);
|
||||
|
|
Loading…
Reference in a new issue