mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-12 10:24:07 +01:00
fixes offline
This commit is contained in:
parent
d819731934
commit
d42ae87ea3
@ -164,7 +164,12 @@ public class ExpireManager {
|
|||||||
String filename = null;
|
String filename = null;
|
||||||
if (PlotMain.checkVersion()) {
|
if (PlotMain.checkVersion()) {
|
||||||
foldername = "playerdata";
|
foldername = "playerdata";
|
||||||
filename = uuid.toString() + ".dat";
|
try {
|
||||||
|
filename = op.getUniqueId() +".dat";
|
||||||
|
}
|
||||||
|
catch (Throwable e) {
|
||||||
|
filename = uuid.toString() + ".dat";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
foldername = "players";
|
foldername = "players";
|
||||||
|
Loading…
Reference in New Issue
Block a user