Revert logic change

This commit is contained in:
Alexander Meech 2018-07-21 13:31:32 -04:00
parent df54dfac97
commit 369b0e2c0a
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public enum MinecraftVersion
{
Preconditions.checkNotNull(other);
return ordinal() >= other.ordinal();
return ordinal() <= other.ordinal();
}
public static MinecraftVersion fromInt(int version)