Use positive page numbers when a player uses /mctop -1

This commit is contained in:
TfT_02 2013-03-27 20:36:56 +01:00
parent 0118346aaf
commit 1f25b0b00b

View File

@ -30,7 +30,7 @@ public class MctopCommand implements CommandExecutor {
case 1: case 1:
if (StringUtils.isInt(args[0])) { if (StringUtils.isInt(args[0])) {
display(Integer.parseInt(args[0]), "ALL", sender, useMySQL, command); display(Math.abs(Integer.parseInt(args[0])), "ALL", sender, useMySQL, command);
return true; return true;
} }
@ -50,7 +50,7 @@ public class MctopCommand implements CommandExecutor {
return true; return true;
} }
display(Integer.parseInt(args[1]), skill.toString(), sender, useMySQL, command); display(Math.abs(Integer.parseInt(args[1])), skill.toString(), sender, useMySQL, command);
return true; return true;
default: default: