We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6564b8e commit c80b24aCopy full SHA for c80b24a
src/components/servers/EditServerDialog.tsx
@@ -106,6 +106,7 @@ const EditServerDialog = ({
106
dropdownIconColor={darkMode ? '#ffffff' : '#000000'}
107
>
108
<Picker.Item label='Auto' value='auto' />
109
+ <Picker.Item label='1.20 (WIP)' value='1.20' />
110
<Picker.Item label='1.19.4 (WIP)' value='1.19.4' />
111
<Picker.Item label='1.19.3 (WIP)' value='1.19.3' />
112
<Picker.Item label='1.19.1/1.19.2 (WIP)' value='1.19.1' />
src/minecraft/utils.ts
@@ -15,7 +15,8 @@ export const protocolMap = {
15
'1.19.2': 760,
16
'1.19.3': 761,
17
'1.19.4': 762,
18
- latest: 762,
+ '1.20': 763,
19
+ latest: 763,
20
auto: -1
21
}
22
0 commit comments