mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 21:26:45 +01:00
*
This commit is contained in:
parent
613d79fb39
commit
154bad6188
@ -76,7 +76,7 @@ public class Visit extends Command {
|
|||||||
}
|
}
|
||||||
page = Integer.parseInt(args[1]);
|
page = Integer.parseInt(args[1]);
|
||||||
case 1:
|
case 1:
|
||||||
UUID user = UUIDHandler.getUUIDFromString(args[0]);
|
UUID user = args[0].length() >= 4 ? UUIDHandler.getUUIDFromString(args[0]) : null;
|
||||||
if (user != null && !PS.get().hasPlot(user)) user = null;
|
if (user != null && !PS.get().hasPlot(user)) user = null;
|
||||||
if (page == Integer.MIN_VALUE && user == null && MathMan.isInteger(args[0])) {
|
if (page == Integer.MIN_VALUE && user == null && MathMan.isInteger(args[0])) {
|
||||||
page = Integer.parseInt(args[0]);
|
page = Integer.parseInt(args[0]);
|
||||||
|
Loading…
Reference in New Issue
Block a user