1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-06 14:46:32 +02:00

Temp fix to disable version check on R7

This commit is contained in:
KHobbits
2012-03-05 14:17:09 +00:00
parent 7bb75bd7ee
commit 5cb65202c9

View File

@@ -133,7 +133,7 @@ public class Essentials extends JavaPlugin implements IEssentials
if (versionMatch.matches())
{
final int versionNumber = Integer.parseInt(versionMatch.group(1));
if (versionNumber < BUKKIT_VERSION)
if (versionNumber < BUKKIT_VERSION && versionNumber > 100)
{
LOGGER.log(Level.SEVERE, _("notRecommendedBukkit"));
LOGGER.log(Level.SEVERE, _("requiredBukkit", Integer.toString(BUKKIT_VERSION)));