mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-08-10 06:23:14 +00:00
Fixes
Fixed plot auto for mega plot Fixed an issue with SQLManager and SQLite Added config option for max claim area for a mega plot with plot auto Fixed an issue with UUIDHandler + online mode and old minecraft versions.
This commit is contained in:
parent
fd306bf0a9
commit
7029069e31
6 changed files with 85 additions and 53 deletions
|
@ -325,6 +325,12 @@ public class UUIDHandler {
|
|||
uuidWrapper = new OfflineUUIDWrapper();
|
||||
}
|
||||
}
|
||||
return uuidWrapper.getUUID(player);
|
||||
try {
|
||||
return uuidWrapper.getUUID(player);
|
||||
}
|
||||
catch (Throwable e) {
|
||||
uuidWrapper = new OfflineUUIDWrapper();
|
||||
return uuidWrapper.getUUID(player);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue