mirror of
https://github.com/ViaVersion/ViaFabricPlus.git
synced 2024-11-15 10:45:35 +01:00
1.20.3
This commit is contained in:
parent
554638b60a
commit
2e42a4565e
@ -15,7 +15,7 @@
|
|||||||
ViaFabricPlus is a deep integration of ViaVersion on the Fabric platform, unlike the classic Via* implementations, ViaFabricPlus implements many changes that can't be fixed on protocol level (old animations, old movement/swimming, collisions and general rendering changes).
|
ViaFabricPlus is a deep integration of ViaVersion on the Fabric platform, unlike the classic Via* implementations, ViaFabricPlus implements many changes that can't be fixed on protocol level (old animations, old movement/swimming, collisions and general rendering changes).
|
||||||
At the time of writing, VFP is the only protocol translation platform for the client with which you can play on all Minecraft multiplayer versions with many QoL features and get the feel of the old versions.
|
At the time of writing, VFP is the only protocol translation platform for the client with which you can play on all Minecraft multiplayer versions with many QoL features and get the feel of the old versions.
|
||||||
### Supported Server versions
|
### Supported Server versions
|
||||||
- Release (1.0.0 - 1.20.3 snapshot)
|
- Release (1.0.0 - 1.20.3)
|
||||||
- Beta (b1.0 - b1.8.1)
|
- Beta (b1.0 - b1.8.1)
|
||||||
- Alpha (a1.0.15 - a1.2.6)
|
- Alpha (a1.0.15 - a1.2.6)
|
||||||
- Classic (c0.0.15 - c0.30 including [CPE](https://wiki.vg/Classic_Protocol_Extension))
|
- Classic (c0.0.15 - c0.30 including [CPE](https://wiki.vg/Classic_Protocol_Extension))
|
||||||
|
@ -14,12 +14,12 @@ maven_group=de.florianmichael
|
|||||||
archives_base_name=viafabricplus
|
archives_base_name=viafabricplus
|
||||||
|
|
||||||
# ViaVersion Libraries
|
# ViaVersion Libraries
|
||||||
viaversion_version=4.9.0-1.20.3-pre4-SNAPSHOT
|
viaversion_version=4.9.1
|
||||||
viabackwards_version=4.9.0-1.20.3-pre3-SNAPSHOT
|
viabackwards_version=4.9.0
|
||||||
vialegacy_version=2.2.21-SNAPSHOT
|
vialegacy_version=2.2.21
|
||||||
viaaprilfools_version=2.0.10-SNAPSHOT
|
viaaprilfools_version=2.0.10
|
||||||
viabedrock_version=0.0.3-SNAPSHOT
|
viabedrock_version=0.0.3-SNAPSHOT
|
||||||
vialoader_version=2.2.11-SNAPSHOT
|
vialoader_version=2.2.11
|
||||||
|
|
||||||
# RaphiMC Libraries
|
# RaphiMC Libraries
|
||||||
minecraftauth_version=3.0.0
|
minecraftauth_version=3.0.0
|
||||||
|
@ -46,7 +46,6 @@ public abstract class MixinProtocolVersion {
|
|||||||
viafabricplus_remaps.put("1.18/1.18.1", new Pair<>("1.18-1.18.1", null));
|
viafabricplus_remaps.put("1.18/1.18.1", new Pair<>("1.18-1.18.1", null));
|
||||||
viafabricplus_remaps.put("1.19.1/2", new Pair<>("1.19.1-1.19.2", null));
|
viafabricplus_remaps.put("1.19.1/2", new Pair<>("1.19.1-1.19.2", null));
|
||||||
viafabricplus_remaps.put("1.20/1.20.1", new Pair<>("1.20-1.20.1", null));
|
viafabricplus_remaps.put("1.20/1.20.1", new Pair<>("1.20-1.20.1", null));
|
||||||
viafabricplus_remaps.put("1.20.3", new Pair<>("1.20.3-pre4", null));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Redirect(method = "<clinit>", at = @At(value = "INVOKE", target = "Lcom/viaversion/viaversion/api/protocol/version/ProtocolVersion;register(ILjava/lang/String;)Lcom/viaversion/viaversion/api/protocol/version/ProtocolVersion;"))
|
@Redirect(method = "<clinit>", at = @At(value = "INVOKE", target = "Lcom/viaversion/viaversion/api/protocol/version/ProtocolVersion;register(ILjava/lang/String;)Lcom/viaversion/viaversion/api/protocol/version/ProtocolVersion;"))
|
||||||
|
@ -33,7 +33,7 @@ public class PackFormatsMappings {
|
|||||||
private final static Map<Integer, GameVersion> protocolMap = new HashMap<>();
|
private final static Map<Integer, GameVersion> protocolMap = new HashMap<>();
|
||||||
|
|
||||||
public static void load() {
|
public static void load() {
|
||||||
registerVersion(VersionEnum.r1_20_3, 22, "1.20.3-pre4");
|
registerVersion(VersionEnum.r1_20_3, 22, "1.20.3");
|
||||||
registerVersion(VersionEnum.r1_20_2, 18, "1.20.2");
|
registerVersion(VersionEnum.r1_20_2, 18, "1.20.2");
|
||||||
registerVersion(VersionEnum.r1_20tor1_20_1, 15, "1.20.1"); // 1.20 and 1.20.1 are the same, why care...
|
registerVersion(VersionEnum.r1_20tor1_20_1, 15, "1.20.1"); // 1.20 and 1.20.1 are the same, why care...
|
||||||
registerVersion(VersionEnum.r1_19_4, 13, "1.19.4");
|
registerVersion(VersionEnum.r1_19_4, 13, "1.19.4");
|
||||||
|
Loading…
Reference in New Issue
Block a user