Fixed issue with CommandContext breaking arguments with negative numbers.

This commit is contained in:
sk89q 2011-02-18 20:54:01 -08:00
parent 7d661844ad
commit eff7dac690

View File

@ -33,7 +33,7 @@ public class CommandContext {
int i = 1;
for (; i < args.length; i++) {
if (args[i].charAt(0) == '-') {
if (args[i].charAt(0) == '-' && args[i].matches("^-[a-zA-Z]+$")) {
for (int k = 1; k < args[i].length(); k++) {
flags.add(args[i].charAt(k));
}