Enable forward compitable

This commit is contained in:
Clisprail
2013-12-13 00:37:18 +01:00
parent c25286a62d
commit e981a1a32e
+1 -1
View File
@@ -64,7 +64,7 @@ public class Core {
BufferedReader br = WebUtil.getReader(Configuration.GET_BOT_VERSION);
try {
double version = Double.parseDouble(br.readLine());
if (Configuration.BOT_VERSION == version) {
if (Configuration.BOT_VERSION >= version) {
Core.verbose("No updates available.");
return true;
}