Fixed getDouble()

This commit is contained in:
Acrobot 2012-04-19 16:05:56 +02:00
parent e23184d0fa
commit 6bcac6fa01
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ public class Config {
}
public static double getDouble(String value) {
return Double.parseDouble(value);
return Double.parseDouble(getValue(value).toString());
}
private static String getColored(String msg) {