mirror of
https://github.com/ViaVersion/ViaFabricPlus.git
synced 2024-12-22 16:48:25 +01:00
Fixed auto detect breaking version comparisons
This commit is contained in:
parent
9fa0ec0df7
commit
cfb2ca5d5a
@ -95,9 +95,9 @@ public class ProtocolTranslator {
|
||||
protected Comparator<ProtocolVersion> customComparator() {
|
||||
return (o1, o2) -> {
|
||||
if (o1 == AUTO_DETECT_PROTOCOL) {
|
||||
return -1;
|
||||
} else if (o2 == AUTO_DETECT_PROTOCOL) {
|
||||
return 1;
|
||||
} else if (o2 == AUTO_DETECT_PROTOCOL) {
|
||||
return -1;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user