MinecraftVersion logic fix

This commit is contained in:
Polo1K 2018-07-18 10:59:34 +01:00 committed by Alexander Meech
parent dce547792a
commit f8b5a13240
1 changed files with 2 additions and 2 deletions

View File

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