Regex errors

This commit is contained in:
nossr50 2019-02-13 13:45:38 -08:00
parent fb2eddd432
commit 2de87f7189

View File

@ -292,21 +292,21 @@ public abstract class ConfigLoaderConfigurable implements DefaultKeys {
int getIntValue(String path)
{
return userRootNode.getNode(path.split(".")).getInt();
return userRootNode.getNode(path.split("\\.")).getInt();
}
double getDoubleValue(String path)
{
return userRootNode.getNode(path.split(".")).getDouble();
return userRootNode.getNode(path.split("\\.")).getDouble();
}
boolean getBooleanValue(String path)
{
return userRootNode.getNode(path.split(".")).getBoolean();
return userRootNode.getNode(path.split("\\.")).getBoolean();
}
String getStringValue(String path)
{
return userRootNode.getNode(path.split(".")).getString();
return userRootNode.getNode(path.split("\\.")).getString();
}
}