This commit is contained in:
ZeroEpoch1969 2018-05-18 19:10:18 -07:00
parent 40362eb790
commit 94b7e138d7
No known key found for this signature in database
GPG key ID: E0AAB104FB9F8FDF

View file

@ -20,7 +20,7 @@ public class Command_setlimit extends FreedomCommand
{
try
{
amount = Math.max(1, Math.min(2000000, Integer.parseInt(args[0])));
amount = Math.max(1, Math.min(200000, Integer.parseInt(args[0])));
}
catch (NumberFormatException ex)
{