2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2026-04-08 16:10:26 +00:00

Only allow 6.2 or above of redis versions

This commit is contained in:
2023-10-18 15:42:35 +04:00
parent a6c6916103
commit d70a5de829
2 changed files with 6 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ public class RedisUtil {
}
int major = Integer.parseInt(args[0]);
int minor = Integer.parseInt(args[1]);
return major >= 3 && minor >= 0;
return major >= 6 && minor >= 2;
}
// Ham1255: i am keeping this if some plugin uses this *IF*