mirror of
https://github.com/ViaVersion/ViaFabricPlus.git
synced 2025-01-02 18:39:16 +01:00
Start working on 1.21.4
This commit is contained in:
parent
0012083673
commit
624f920f19
@ -67,11 +67,11 @@ dependencies {
|
||||
|
||||
modCompileOnly "com.terraformersmc:modmenu:12.0.0"
|
||||
|
||||
jij "com.viaversion:viaversion-common:5.2.0"
|
||||
jij "com.viaversion:viaversion-common:5.2.1-SNAPSHOT"
|
||||
jij "com.viaversion:viabackwards-common:5.2.0"
|
||||
jij "net.raphimc:viaaprilfools-common:3.0.4"
|
||||
jij "net.raphimc:ViaLegacy:3.0.6"
|
||||
jij ("net.raphimc:ViaBedrock:0.0.14-20241206.155528-1") {
|
||||
jij "net.raphimc:viaaprilfools-common:3.0.5-SNAPSHOT"
|
||||
jij "net.raphimc:ViaLegacy:3.0.7-SNAPSHOT"
|
||||
jij ("net.raphimc:ViaBedrock:0.0.13-SNAPSHOT") {
|
||||
exclude group: "io.jsonwebtoken"
|
||||
exclude group: "com.mojang", module: "brigadier"
|
||||
}
|
||||
|
@ -5,14 +5,14 @@ org.gradle.parallel=true
|
||||
# Project Details
|
||||
maven_group=de.florianmichael
|
||||
maven_name=ViaFabricPlus
|
||||
maven_version=3.5.3
|
||||
maven_version=3.6.0-SNAPSHOT
|
||||
maven_description=Fabric mod to connect to EVERY Minecraft server version (Release, Beta, Alpha, Classic, Snapshots, Bedrock) with QoL fixes to the gameplay
|
||||
|
||||
# Minecraft/Fabric
|
||||
minecraft_version=1.21.3
|
||||
yarn_version=1.21.3+build.2
|
||||
minecraft_version=1.21.4
|
||||
yarn_version=1.21.4+build.1
|
||||
loader_version=0.16.9
|
||||
fabric_api_version=0.108.0+1.21.3
|
||||
fabric_api_version=0.110.5+1.21.4
|
||||
|
||||
# Set to empty to use the Minecraft version above
|
||||
supported_versions=>=1.21.2 <=1.21.3
|
||||
supported_versions=
|
||||
|
@ -48,6 +48,17 @@ public class ItemRegistryDiff {
|
||||
public static final List<Item> EXTENDED_CLASSIC_ITEMS = new ArrayList<>();
|
||||
|
||||
static {
|
||||
ITEM_DIFF.put(OPEN_EYEBLOSSOM, andNewer(v1_21_4));
|
||||
ITEM_DIFF.put(CLOSED_EYEBLOSSOM, andNewer(v1_21_4));
|
||||
ITEM_DIFF.put(RESIN_CLUMP, andNewer(v1_21_4));
|
||||
ITEM_DIFF.put(RESIN_BLOCK, andNewer(v1_21_4));
|
||||
ITEM_DIFF.put(RESIN_BRICKS, andNewer(v1_21_4));
|
||||
ITEM_DIFF.put(RESIN_BRICK_STAIRS, andNewer(v1_21_4));
|
||||
ITEM_DIFF.put(RESIN_BRICK_SLAB, andNewer(v1_21_4));
|
||||
ITEM_DIFF.put(RESIN_BRICK_WALL, andNewer(v1_21_4));
|
||||
ITEM_DIFF.put(CHISELED_RESIN_BRICKS, andNewer(v1_21_4));
|
||||
ITEM_DIFF.put(RESIN_BRICK, andNewer(v1_21_4));
|
||||
|
||||
ITEM_DIFF.put(PALE_OAK_PLANKS, andNewer(v1_21_2));
|
||||
ITEM_DIFF.put(PALE_OAK_SAPLING, andNewer(v1_21_2));
|
||||
ITEM_DIFF.put(PALE_OAK_LOG, andNewer(v1_21_2));
|
||||
|
@ -27,6 +27,7 @@ import com.viaversion.viaversion.api.protocol.packet.ServerboundPacketType;
|
||||
import com.viaversion.viaversion.api.protocol.packet.State;
|
||||
import com.viaversion.viaversion.api.protocol.version.ProtocolVersion;
|
||||
import com.viaversion.viaversion.api.type.Types;
|
||||
import com.viaversion.viaversion.protocols.v1_21_2to1_21_4.packet.ServerboundPackets1_21_4;
|
||||
import com.viaversion.viaversion.protocols.v1_21to1_21_2.packet.ClientboundPackets1_21_2;
|
||||
import com.viaversion.viaversion.protocols.v1_21to1_21_2.packet.ServerboundPackets1_21_2;
|
||||
import com.viaversion.viaversion.util.Key;
|
||||
@ -119,7 +120,7 @@ public class ViaFabricPlusProtocol extends AbstractSimpleProtocol {
|
||||
}
|
||||
|
||||
public static ServerboundPacketType getSetCreativeModeSlot() {
|
||||
return ServerboundPackets1_21_2.SET_CREATIVE_MODE_SLOT;
|
||||
return ServerboundPackets1_21_4.SET_CREATIVE_MODE_SLOT;
|
||||
}
|
||||
|
||||
public static ClientboundPacketType getCustomPayload() {
|
||||
|
@ -90,7 +90,7 @@ public class ProtocolTranslator {
|
||||
/**
|
||||
* The native version of the client
|
||||
*/
|
||||
public static final ProtocolVersion NATIVE_VERSION = ProtocolVersion.v1_21_2;
|
||||
public static final ProtocolVersion NATIVE_VERSION = ProtocolVersion.v1_21_4;
|
||||
|
||||
/**
|
||||
* Protocol version that is used to enable protocol auto-detect
|
||||
|
Loading…
Reference in New Issue
Block a user