mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
Fix debugimportworlds 1.13
because someone changed PlotId.fromString to throw an exception without updating things that call it
This commit is contained in:
parent
000e3de35d
commit
d31dbc7c7c
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ import java.util.UUID;
|
|||
}
|
||||
for (File folder : container.listFiles()) {
|
||||
String name = folder.getName();
|
||||
if (!WorldUtil.IMP.isWorld(name) && PlotId.fromString(name) == null) {
|
||||
if (!WorldUtil.IMP.isWorld(name) && PlotId.fromStringOrNull(name) == null) {
|
||||
UUID uuid = UUIDHandler.getUUID(name, null);
|
||||
if (uuid == null) {
|
||||
uuid =
|
||||
|
|
Loading…
Reference in a new issue