mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-23 05:36:45 +01:00
Fixed plot visit
This commit is contained in:
parent
248ffd9d6e
commit
8cf39be76c
@ -58,7 +58,7 @@ public class Visit extends SubCommand {
|
|||||||
@Override
|
@Override
|
||||||
public boolean onCommand(PlotPlayer plr, String[] args) {
|
public boolean onCommand(PlotPlayer plr, String[] args) {
|
||||||
ArrayList<Plot> plots = new ArrayList<>();
|
ArrayList<Plot> plots = new ArrayList<>();
|
||||||
UUID user = UUIDHandler.getUUID(args[0], null);
|
UUID user = UUIDHandler.getCachedUUID(args[0], null);
|
||||||
if (user != null ) {
|
if (user != null ) {
|
||||||
// do plots by username
|
// do plots by username
|
||||||
plots.addAll(PS.get().getPlots(user));
|
plots.addAll(PS.get().getPlots(user));
|
||||||
|
@ -111,6 +111,10 @@ public class UUIDHandler {
|
|||||||
return implementation.getUUID(name, ifFetch);
|
return implementation.getUUID(name, ifFetch);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static UUID getCachedUUID(final String name, RunnableVal<UUID> ifFetch) {
|
||||||
|
return implementation.getUUIDMap().get(new StringWrapper(name));
|
||||||
|
}
|
||||||
|
|
||||||
public static Map<String, PlotPlayer> getPlayers() {
|
public static Map<String, PlotPlayer> getPlayers() {
|
||||||
return implementation.getPlayers();
|
return implementation.getPlayers();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user