mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-26 15:16:45 +01:00
Fixed plot owner UUIDs getting unnecessarily randomized. (#2233)
This commit is contained in:
parent
15ea0f3210
commit
8ba661aa35
@ -116,10 +116,10 @@ public class ClassicPlotMeConnector extends APlotMeConnector {
|
|||||||
PlotSquared.log(
|
PlotSquared.log(
|
||||||
"&cCould not identify owner for plot: " + id + " -> '" + name + "'");
|
"&cCould not identify owner for plot: " + id + " -> '" + name + "'");
|
||||||
missing++;
|
missing++;
|
||||||
|
owner = UUID.nameUUIDFromBytes(
|
||||||
|
("OfflinePlayer:" + name.toLowerCase()).getBytes(Charsets.UTF_8));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
owner = UUID.nameUUIDFromBytes(
|
|
||||||
("OfflinePlayer:" + name.toLowerCase()).getBytes(Charsets.UTF_8));
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
UUIDHandler.add(new StringWrapper(name), owner);
|
UUIDHandler.add(new StringWrapper(name), owner);
|
||||||
|
Loading…
Reference in New Issue
Block a user