mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2024-12-23 00:15:06 +00:00
*
This commit is contained in:
parent
613d79fb39
commit
154bad6188
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ public class Visit extends Command {
|
|||
}
|
||||
page = Integer.parseInt(args[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 (page == Integer.MIN_VALUE && user == null && MathMan.isInteger(args[0])) {
|
||||
page = Integer.parseInt(args[0]);
|
||||
|
|
Loading…
Reference in a new issue