mirror of
https://github.com/ViaVersion/ViaProxy.git
synced 2025-01-03 18:38:24 +01:00
Fixed auto detect breaking version comparisons
This commit is contained in:
parent
5e0b5a9a69
commit
9d940232d8
@ -43,9 +43,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