mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Merge remote-tracking branch 'upstream/master' into ext-1.19.20-fixes
# Conflicts: # core/pom.xml
This commit is contained in:
commit
259fed247a
5 changed files with 9973 additions and 1 deletions
|
@ -30,7 +30,7 @@ object Versions {
|
|||
const val guavaVersion = "29.0-jre"
|
||||
const val nbtVersion = "2.1.0"
|
||||
const val websocketVersion = "1.5.1"
|
||||
const val protocolVersion = "92d9854"
|
||||
const val protocolVersion = "0bd459f"
|
||||
// Not pinned to specific version due to possible gradle bug
|
||||
// See comment in settings.gradle.kts
|
||||
const val raknetVersion = "1.6.28-SNAPSHOT"
|
||||
|
|
|
@ -40,6 +40,7 @@ import com.nukkitx.protocol.bedrock.packet.StartGamePacket;
|
|||
import it.unimi.dsi.fastutil.ints.*;
|
||||
import com.nukkitx.protocol.bedrock.v527.Bedrock_v527;
|
||||
import com.nukkitx.protocol.bedrock.v534.Bedrock_v534;
|
||||
import com.nukkitx.protocol.bedrock.v544.Bedrock_v544;
|
||||
import it.unimi.dsi.fastutil.ints.Int2IntMap;
|
||||
import it.unimi.dsi.fastutil.ints.IntArrayList;
|
||||
import it.unimi.dsi.fastutil.ints.IntList;
|
||||
|
@ -78,6 +79,7 @@ public class ItemRegistryPopulator {
|
|||
paletteVersions.put("1_19_0", new PaletteVersion(Bedrock_v527.V527_CODEC.getProtocolVersion(),
|
||||
Collections.singletonMap("minecraft:trader_llama_spawn_egg", "minecraft:llama_spawn_egg")));
|
||||
paletteVersions.put("1_19_10", new PaletteVersion(Bedrock_v534.V534_CODEC.getProtocolVersion(), Collections.emptyMap()));
|
||||
paletteVersions.put("1_19_20", new PaletteVersion(Bedrock_v544.V544_CODEC.getProtocolVersion(), Collections.emptyMap()));
|
||||
|
||||
GeyserBootstrap bootstrap = GeyserImpl.getInstance().getBootstrap();
|
||||
|
||||
|
|
5440
core/src/main/resources/bedrock/creative_items.1_19_20.json
Normal file
5440
core/src/main/resources/bedrock/creative_items.1_19_20.json
Normal file
File diff suppressed because it is too large
Load diff
Binary file not shown.
4530
core/src/main/resources/bedrock/runtime_item_states.1_19_20.json
Normal file
4530
core/src/main/resources/bedrock/runtime_item_states.1_19_20.json
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue