File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export const protocolMap = {
9
9
'1.17.1' : 756 ,
10
10
1.18 : 757 ,
11
11
'1.18.1' : 757 ,
12
+ '1.18.2' : 758 ,
12
13
auto : - 1
13
14
}
14
15
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ const ServerScreen = () => {
150
150
if ( protocolVersion === - 1 ) {
151
151
const ping = pingResponses [ servers [ server ] . address ]
152
152
// Try the latest.
153
- if ( ! ping ) protocolVersion = protocolMap [ '1.18.1 ' ]
153
+ if ( ! ping ) protocolVersion = protocolMap [ '1.18.2 ' ]
154
154
else if ( typeof ping . version === 'object' ) {
155
155
protocolVersion = ping . version . protocol
156
156
} else protocolVersion = ( ping as LegacyPing ) . protocol
@@ -257,6 +257,7 @@ const ServerScreen = () => {
257
257
dropdownIconColor = { darkMode ? '#ffffff' : '#000000' }
258
258
>
259
259
< Picker . Item label = 'Auto' value = 'auto' />
260
+ < Picker . Item label = '1.18.2' value = '1.18.2' />
260
261
< Picker . Item label = '1.18/1.18.1' value = '1.18' />
261
262
< Picker . Item label = '1.17.1' value = '1.17.1' />
262
263
< Picker . Item label = '1.17' value = '1.17' />
You can’t perform that action at this time.
0 commit comments